#include <stdio.h> int main() { int num = 4, k = 1; do { num = num++; k++; } while (k != 4); printf("%d\n", num); }
4
Previous Question Next Question
Your comments will be displayed only after manual approval.