Q. Output is
Code:#include <stdio.h>
void main() {
int x = 4;
int y = 5;
x = ++x + y–;
printf(“%d “, x);
printf(“%d”, y);
}
β
Correct Answer: (D)
10 4
#include <stdio.h>
void main() {
int x = 4;
int y = 5;
x = ++x + y–;
printf(“%d “, x);
printf(“%d”, y);
}
You must be Logged in to update hint/solution