Software and Hardware
Programming Software
Subjective
Jan 02, 2013
What will be the output of following program ?
#include
main()
{
int x,y = 10;
x = y * NULL;
printf("%d",x);
}
Detailed Explanation
The output of the program is 0. So the answer is b.
Discussion (0)
No comments yet. Be the first to share your thoughts!
Share Your Thoughts