Computer Science, asked by vinmet, 8 months ago

int main()
{ int a=6, b=5;
b=a++ + b--;
prints("%d %d%d%d", b, a++, a, ++a);
}​

Answers

Answered by Anonymous
1

Output:

%d %d%d%d 11 7 8 9

Hope this helps

One more thing there is a problem in the question itself. Instead of ' , ' you should have posted ' + ' sign

Similar questions