C Program For Types of Pointers
Get Certified in C Programming and Take Your Skills to the Next Level
Program 1
#include<stdio.h>
#include<conio.h>
void main()
{
float *p;
printf("size is %d",sizeof(p)); // 8 byte
}
Did you like this article? If Yes, please give DataFlair 5 Stars on Google

