railway Gujarat Metro SCTO Mock Test 2023 Programming and Data Structure Programming in C Scope of a Variable
Find the output of the following
#include
int main()
{
int x=5, y=9;
x=(x= x+y)-(y= x-y);
printf("%d %d ", x, y);
return 0;
}
1
14 5
2
9 5
3
5 9
4
5 14