Programming Languages C Objective
Jan 04, 2013

#include<stdio.h>
int main(){
int i=5,j;
j=++i+++i+++i;
printf("%d %d",i,j);
return 0;
}

Output of the program is ?

Choose the correct answer:
A) 5 24
B) 7 24
C) Error of Compiler
D) garbage value
Detailed Explanation

Above program show the compiler error. so the answer is c.

Discussion (0)

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

Share Your Thoughts
Feedback