Discussion :: Testing New
-
What will be the output of the following program?
#include<stdio.h>
void main()
{
int i = 10;
void *p = &i;
printf("%d\n", (int)*p);
}
Answer : Option A
Explanation :
p is pointer of type void.
Be The First To Comment