Math, asked by ankitbro6, 8 months ago

1. evaluate the following expression of the
value of x=2, y 3 and 221
= v=x+ --z + y++ +y​

Answers

Answered by SonalRamteke
2

int main()

{

int x=5,y=15;

x= x++ + ++y;

y = ++x + ++y;

printf("%d %d",x,y);

return 0;

Similar questions