Examveda
Examveda

What is the output of this program?
#include<stdio.h>
#inlcude<stdlib.h>
 
int main()
{
    int *ptr;
    double *ptr;
    printf("%d\n",sizeof(ptr));
    return 0;	   
}

A. 4

B. 8

C. the compiler will give the error

D. segmentaion fault

Answer: Option C


This Question Belongs to Computer Science >> Linux

Join The Discussion

Related Questions on Linux