What will be the output of the following C code?
#include <stdio.h>
int main()
{
int a = 1, b = 2;
a += b -= a;
printf("%d %d", a, b);
}
#include <stdio.h>
int main()
{
int a = 1, b = 2;
a += b -= a;
printf("%d %d", a, b);
}
A. 1 1
B. 1 2
C. 2 1
D. 2 2
Answer: Option C
Join The Discussion