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

What is output? #include #include void foo(); int main() { printf("%d ", 1); goto l1; printf("%d ", 2); } void foo() { l1: printf("3 "); }

3/25

What is output? #include #include void foo(); int main() { printf("%d ", 1); goto l1; printf("%d ", 2); } void foo() { l1: printf("3 "); }

Complie error

3

1

1 3

Giải thích

Chọn đáp án A