edited by
496 views
0 votes
0 votes
#include <stdio.h>
int main()
{
    int i = 3;
    printf("%d", (++i)++);
    return 0;
}
Why does the above code is giving error?
edited by

Please log in or register to answer this question.

Related questions

2 votes
2 votes
1 answer
1
0 votes
0 votes
0 answers
2
0 votes
0 votes
0 answers
3
balaganesh asked Aug 31, 2018
238 views
the output of the following problem?main(){ int a=1,b=2,c=4; printf("%d",a+=(a+=4,10,a));} Explain?
0 votes
0 votes
0 answers
4
Lakshman Bhaiya asked Mar 1, 2018
611 views
#include<stdio.h int main() { int a = 15; printf("%d\n",++a); printf("%d\n",a++); printf("%d\n", a); printf("%d\n",a ); return 0; }16,16,16,1615,13,15,1516,15,14,1416,16,...