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

What is output? #include #include #define ISEQUAL(X, Y) X == Y void main() { #if ISEQUAL(X, 0) printf("C/C++"); #else printf("Java"); #endif getch(); }

13/25

What is output? #include #include #define ISEQUAL(X, Y) X == Y void main() { #if ISEQUAL(X, 0) printf("C/C++"); #else printf("Java"); #endif getch(); }

C/C++

Java

Complier error

Giải thích

Chọn đáp án C