A
Q. What will be the output of following program ?
Code:
#include
main()
{
int x,y = 10;
x = y * NULL;
printf(“%d”,x);
}
main()
{
int x,y = 10;
x = y * NULL;
printf(“%d”,x);
}
- Correct Answer - Option(A)
- Views: 23
- Filed under category C Programming
- Hashtags:
Discusssion
Login to discuss.