Software and Hardware Programming Software Objective
Mar 08, 2013

What will be the output of following program ?

#include<stdio.h>
main()
{
int x,y = 10;
x = y * NULL;
printf("%d",x);
}

Choose the correct answer:
B) 10
C) garbadge
D) Compiler error
Detailed Explanation

No Explanation

Discussion (0)

No comments yet. Be the first to share your thoughts!

Share Your Thoughts
Feedback