Answer Posted / amitpratapsingh
array is the collection of similar elements or similar data type.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What is logical error?
What is this pointer in c plus plus?
Explain void pointer?
What is an lvalue?
Why is c faster?
What is the difference between printf and scanf )?
Can we use visual studio for c?
What does char * * argv mean in c?
What is the difference between null pointer and wild pointer?
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
What are enums in c?
List some basic data types in c?
What is fflush() function?
What is storage class?
How to check whether string is a palindrome, WITHOUT USING STRING FUNCTIONS?