#include <stdio.h> void main() { int n = 0, L; if (n == 0) goto Label; for (L = 0; L < 3; L++) { printf("Hey"); Label: L = printf("%03d", n); } }
000
Previous Question Next Question
Your comments will be displayed only after manual approval.