ANSWER : B
Explanation :
#include<stdio.h>
main()
{
int x,y = 10;
x = y * NULL;
printf("%d",x);
}
During preprocessing NULL will be replaced by '0'. Hence '0' will get printed
out.
Notes :
NULL has been defined in "stdio.h" as #include NULL 0.