Programming Languages C Objective
Mar 09, 2013

What will be output of following c code?

#include
int main()
 {
    int a= sizeof(signed) +sizeof(unsigned);
    int b=sizeof(const)+sizeof(volatile);
    printf("%d",a+++b);
    return 0;
 }

Choose the correct answer:
A) 8
B) 16
C) Error: Undefined operator +++
D) Error: Cannot find size of modifiers
Detailed Explanation

No Explanation

Discussion (0)

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

Share Your Thoughts
Feedback