1. Predict the output of this program fragment: i = 0; while (i <= 5) { printf("%3d%3d\n", i, 10 - i); i = i + 1; }
Posted: Fri May 20, 2022 6:11 pm
1. Predict the output of this program fragment: i = 0; while (i <= 5) { printf("%3d%3d\n", i, 10 - i); i = i + 1; }