Pointers to pointers in c programming language
C pointers to pointers: A pointer is pointing to
another pointers is called pointers to pointer.
Examples of pointers to pointers in c:
What will be output if you will execute following code?
#include<stdio.h>
return 0;
}
As we know p[i] =*(p+i)
No comments:
Post a Comment