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