Q. What will be the output of following program ?
Code:
#include
main()
{
int x,y = 10;
x = y * NULL;
printf(“%d”,x);
}
β
Correct Answer: (A)
0
#include
main()
{
int x,y = 10;
x = y * NULL;
printf(“%d”,x);
}
You must be Logged in to update hint/solution