Interview Questions

What will be printed as the result of the operation below...

C Interview Questions and Answers


(Continued from previous question...)

What will be printed as the result of the operation below...

What will be printed as the result of the operation below:

main()
{
int x=20,y=35;
x=y++ + x++;
y= ++y + ++x;
printf(“%d%d\n”,x,y)
;
}



Answer : 5794

(Continued on next question...)

Other Interview Questions