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 a = 15, b = 10, c = 5; if(a > b > c) printf("True"); else printf("False"); getch(); }

5/25

What is output? void main() { int a = 15, b = 10, c = 5; if(a > b > c) printf("True"); else printf("False"); getch(); }

True

False

Complier Error

Run time error

Giải thích

Chọn đáp án B