71
What will be the output of the following C code?
#include <stdio.h>
int main()
{
int i = 10;
void *p = &i;
printf("%d\n", (int)*p);
return 0;
} Answer & Solution
Answer: Option
A
No explanation is given for this question. Let's Discuss on Board