int main()
{ int a=6, b=5;
b=a++ + b--;
prints("%d %d%d%d", b, a++, a, ++a);
}
Answers
Answered by
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