Programming Languages C Objective
Mar 08, 2013

What will be output of the following c code?
void main()
 {
  int a=5;
  float b;
  printf("%d",sizeof(++a+b));
  printf(" %d",a);
 }

Choose the correct answer:
A) 5 4
B) 4 5
C) 2 6
D) Compiler error
Detailed Explanation

No Explanation

Discussion (0)

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

Share Your Thoughts
Feedback