Answer Posted / guest
could any one help me out how this pointer to an array
organized in the memory?
Eg.,
int (*p) [3] = (int (*)[3])a;
Here *p == p, how?
Thanks in advance!
Is This Answer Correct ? | 3 Yes | 4 No |
Post New Answer View All Answers
What is pointer to pointer in c with example?
How to implement a packet in C
What does struct node * mean?
#include main() { int *p, *c, i; i = 5; p = (int*) (malloc(sizeof(i))); printf(" %d",*p); *p = 10; printf(" %d %d",i,*p); c = (int*) calloc(2); printf(" %d ",*c); }
Write a C program in Fibonacci series.
When should the volatile modifier be used?
What is difference between array and structure in c?
What is the size of enum in c?
is it possible to create your own header files?
Differentiate between full, complete & perfect binary trees.
Is array a primitive data type in c?
What is main () in c?
When would you use a pointer to a function?
What are all different types of pointers in c?
Is c pass by value or reference?