Programming Languages C Objective
Mar 08, 2013

What will be output of the following c code?
void main()
{
char c=125;
c=c+10;
printf("%d",c);
}

Choose the correct answer:
A) Compile error
B) -123
C) 125
D) 8
Detailed Explanation

No Explanation

Discussion (0)

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

Share Your Thoughts
Feedback