Vidyalelo
Computer Science · Q562

Linux

Engineering and GATE · Computer Science · question 562

Q562

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

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

Answer: Option A

Solution

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