Vidyalelo
Computer Science · Q932

Linux

Engineering and GATE · Computer Science · question 932

Q932

What is the output of this program? #include int main() int *ptr; ptr = (int *)calloc(1,sizeof(int)); *ptr = 10; printf("%d ",*ptr); return 0;

A.
0
B.
-1
C.
10
D.
none of the mentioned
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board