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 |
Explain b+ tree?
how can I convert a string to a number?
who is first prime minister in india??
What will the code below print when it is executed? int x = 3, y = 4; if (x = 4) y = 5; else y = 2; printf ("x=%d, y=%d ",x,y);
Can you please explain the difference between syntax vs logical error?
Explain how can you restore a redirected standard stream?
What is s or c?
#include show(int t,va_list ptr1) { int a,x,i; a=va_arg(ptr1,int) printf(" %d",a) } display(char) { int x; listptr; va_star(otr,s); n=va_arg(ptr,int); show(x,ptr); } main() { display("hello",4,12,13,14,44); }
What's a "sequence point"?
Which one to choose from 'initialization lists' or 'assignment', for the use in the constructor?
Write a c program using for loop to print typical pattern if number of rows is entered by keyboard. ABCBA AB BA A A
cin.ignore(80, _ _);This statement a) ignores all input b) ignores the first 80 characters in the input c) ignores all input till end-of-line d) iteration