700+ câu trắc nghiệm Ngôn ngữ lập trình C có đáp án - Phần 13

What is output? void main() { int i = 5, k; if (i == 0) goto label; label: printf("%d", i); printf("Hey"); getch(); }

1/25

What is output? void main() { int i = 5, k; if (i == 0) goto label; label: printf("%d", i); printf("Hey"); getch(); }

Hey

5

5Hey

Complie error

Giải thích

Chọn đáp án C