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

What is output of code? #include #include void main() { int i; i = 10; if(i == 20 || 30) printf("True"); else printf("False"); getch(); }

15/25

What is output of code? #include #include void main() { int i; i = 10; if(i == 20 || 30) printf("True"); else printf("False"); getch(); }

True

False

Complier error

Giải thích

Chọn A.