Hi,
I hav one doubt....could u pls explainme...
I hav defined the following code in c
int **p;
int *q;
p=(int *)malloc(sizeof (int *));
*p=(int *)malloc(sizeof (int));
**p=12;
q=*p;
....
what s da sizeof p,*p,**p in bytes..........
Thanks & Regards.
I hav one doubt....could u pls explainme...
I hav defined the following code in c
int **p;
int *q;
p=(int *)malloc(sizeof (int *));
*p=(int *)malloc(sizeof (int));
**p=12;
q=*p;
....
what s da sizeof p,*p,**p in bytes..........
Thanks & Regards.
Comment