Incremental Operatos

Q

What will be printed as the result of the operation below:

          main()
          {
              int x=20,y=35;
              x=y++ + x++;
              y= ++y + ++x;
              printf("%d%d\n",x,y);
          }

✍: Guest

A

Answer : 5794

2007-02-26, 6581👍, 0💬