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 ?
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