Computer Science, asked by racsonyckiamba7rika, 1 year ago

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 riyasheji
1
The output will be:

45555
Similar questions