character array A[12] can hold
Answers were Sorted based on User's Feedback
Answer / naresh lingampally
What is this null string;
array addresses would be a[0]..a[11] if i am not wrong ...
so a[11] accepts(can store) up to 11 character elements
so can any one explain.....
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / manish malik
It will hold the character A[0}....A[11.and hold the null
character at a[12] position.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / hardeep singh
this question is wrong. array name should be in small
letter.because c and c++ are case senstive.
| Is This Answer Correct ? | 0 Yes | 8 No |
How to implement call back functions ?
What is 1f in c?
how to find binary of number?
What are variables and it what way is it different from constants?
what do you mean by enumeration constant?
What is the difference between far and near ?
Program to find largest of three numbers without using comparsion operator?
How can I invoke another program from within a C program?
f(x,y,z) { y = y+1; z = z+x; } main() { int a,b; a = 2 b = 2; f(a+b,a,a); print a; } what is the value of 'a' printed
#define MAX 3 main() { printf("MAX = %d ",MAX ); #undef MAX #ifdef MAX printf("Vector Institute”); #endif }
What is C++
without a terminator how can we print a message in a printf () function.