What is the memory allocated by the following definition ?
int (*x)[10];
Answer Posted / chris_sreekanth
20 bytes
| Is This Answer Correct ? | 13 Yes | 16 No |
Post New Answer View All Answers
The number of measuring units from an arbitarary starting point in a record,area,or control block to some other point a) recording pointer b) offset c) branching d) none
Are there constructors in c?
how to write optimum code to divide a 50 digit number with a 25 digit number??
What is difference between static and global variable in c?
What are external variables in c?
What is volatile keyword in c?
Is using exit() the same as using return?
which of the following is not a character constant a) 'thank you' b) 'enter values of p, n ,r' c) '23.56E-o3' d) all of the above
Given only putchar (no sprintf, itoa, etc.) write a routine putlong that prints out an unsigned long in decimal. [ I gave the obvious solution of taking % 10 and / 10, which gives us the decimal value in reverse order. This requires an array since we need to print it out in the correct order. The interviewer wasn't too pleased and asked me to give a solution which didn't need the array ].
What is pointer to pointer in c with example?
What is bash c?
Differentiate call by value and call by reference?
What does *p++ do?
What do you mean by keywords in c?
Describe dynamic data structure in c programming language?