1.

The following code displays main( ) { int *p; p = (int*) malloc(sizeof(int)); *p = 10; printf(“p = %d\n”, *p); }

A. 10
B. 1542 (address of p)
C. 20
D. None of the above
Answer» B. 1542 (address of p)


Discussion

No Comment Found