Answer Posted / khamseum
array is a collection of data items of same datatype
| Is This Answer Correct ? | 63 Yes | 17 No |
Post New Answer View All Answers
What are predefined functions in c?
int i[2], j; int *pi;i[0] = 1; i[1] = 5; pi = i; j = *pi + 1 + *(pi + 1)Value of j after execution of the above statements will be a) 7 b) 6 c) 4 d) pointer
Multiply an Integer Number by 2 Without Using Multiplication Operator
write a program to display all prime numbers
What is the purpose of realloc()?
How can you invoke another program from within a C program?
List the difference between a "copy constructor" and a "assignment operator"?
Why is C language being considered a middle level language?
What does return 1 means in c?
What is output redirection?
Is calloc better than malloc?
Badboy is defined who has ALL the following properties: Does not have a girlfriend and is not married. He is not more than 23 years old. The middle name should be "Singh" The last name should have more than 4 characters. The character 'a' should appear in the last name at least two times. The name of one of his brothers should be "Ram" Write a method: boolean isBadBoy(boolean hasGirlFriend , boolean isMarried, int age , String middleName , String lastName , String[] brotherName); isHaveGirlFriend is true if the person has a girlfriend isMarried is true if the person is married age is the age of the person middleName is the middle name of the person lastName is the last name of the person brotherName is the array of the names of his brothers
What are the main characteristics of c language describe the structure of ac program?
Can stdout be forced to print somewhere other than the screen?
Which function in C can be used to append a string to another string?