3. What is the output of the following C program?
int main()
{
int i=5;
i=i++ + ++i;
printf("%d",1);
return 0;
}
Answers
Answered by
1
Answer:
There are a few minor corrections:-
"d" isn't defined in your program.
"printf" is a name error.
so the output without the errors would be:-
10
Answered by
0
Answer:
int I=5; is your answer this question I think this answer is correct I hove it
Similar questions