Find the Output of the Following Code
Find the output of the following code. main() { int i = 5; printf("%d%d%d%d%d", i++, i--, ++i, --i, i); }
Answers
Answered by
1
The output will be:
45555
45555
Similar questions