#include <stdio.h> int main() { int p = 0, k = 0, q; for (k = 0; k < 10; k++) { p++; if (k == 9) break; } printf("%d",p); }
10
Previous Question Next Question
Your comments will be displayed only after manual approval.