int x = -1;
int y = 3;
x = x + y;
printf("x - y is %d.\n", x - y);
what is the output?
Answers
Answered by
1
Answer:
The output of the program will be -1
Similar questions