What is the memory allocated by the following definition ?
int (*x)[10];
Answer Posted / subbu
no memory is allocated at the time of pointer declaration
| Is This Answer Correct ? | 9 Yes | 6 No |
Post New Answer View All Answers
What are volatile variables in c?
what is ur strangth & weekness
How can I do peek and poke in c?
Is exit(status) truly equivalent to returning the same status from main?
What oops means?
how can use subset in c program and give more example
What is class and object in c?
Explain pointer. What are function pointers in C?
Can a variable be both const and volatile?
Write a program to know whether the input number is an armstrong number.
What is the difference between exit() and _exit() function?
regarding pointers concept
.find the output of the following program? char*myfunc(char*ptr) { ptr +=3; return (ptr); } int main() { char*x,*y; x="HELLO"; y=myfunc(x); printf("y = %s ",y); return 0; }
#include
What is the best organizational structure?