Write the steps of executing the statement: x = a++ + (b += x + y);
#include
int main(void)
{
int a = 7, b = -9;
float x = 8.391, y = -32.0921;
x = a++ + (b += x + y);
x++;
printf("a = %d\n", a);
printf("b = %d\n", b);
printf("x = %f\n", x);
printf("y = %f\n", y);
return 0;
}
Please fix the following input errors: