1.

What is the output of this program? #include #include int main() { int *p; p = (int *)malloc(40); printf("%d", sizeof(p)); free(p); return 0; }

A. 40
B. 50
C. 30
D. 20
Answer» D. 20


Discussion

No Comment Found