#include <iostream>
using namespace std;
int main()
{
int *iptr;
char *cptr;
float *fptr;
cout<<sizeof(iptr)<<","<<sizeof(cptr)<<","<<sizeof(fptr)<<endl;
cout<<sizeof(*iptr)<<","<<sizeof(*cptr)<<","<<sizeof(*fptr)<<endl;
return 0;
}
Output
8,8,8
4,1,4
Program is compiled and executed on a 64 bits computer system architecture, that’s why the size of the pointer is 8.
In the above program, we are declaring 3 pointer variables iptr, cptr and fptr of integer, character and float type.
And we are printing the size of these pointer variables along with the type of value (which will be stored in these the address stored in pointer variables).
Consider the following program:
Output
Program is compiled and executed on a 64 bits computer system architecture, that’s why the size of the pointer is 8.
In the above program, we are declaring 3 pointer variables iptr, cptr and fptr of integer, character and float type.
And we are printing the size of these pointer variables along with the type of value (which will be stored in these the address stored in pointer variables).
need an explanation for this answer? contact us directly to get an explanation for this answer