Predict the output of the following code
int main()      
{
int a=5, b=10;
printf("a=%d b=%d",a,b);
a=a+b;
b=a-b;
a=a-b;
printf("a=%d b=%d",a,b);
return 0;
}


Posted on by