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

What is output? void main() { int x = 5,y = 6; int* const p = &x; p = &y; printf("%d", (*p)); getch(); }

6/25

What is output? void main() { int x = 5,y = 6; int* const p = &x; p = &y; printf("%d", (*p)); getch(); }

Complier error

6

5

Another

Giải thích

Chọn đáp án A