Why I'm getting 64 as output of following C program?

前端 未结 0 1086
轻奢々
轻奢々 2020-12-23 11:01

What will be the output of following c program, and why?

int main()
{
    int a=10;
    int b=0;
    b=++a + a++ + ++a + a++ + ++a;
    printf("%d",         


        
相关标签:
回答
  • 消灭零回复
提交回复
热议问题