JavaScript is required

 Kết quả hiển thị ra màn hình của chương trình sau là gì:

#include H>

Void main ()

{

Int a, b ;

A=100 ;

B=56 ;

Printf (" %d", (a

}

A.

56.

B.

100.

C.

Báo lỗi khi thực hiện xây dựng chương trình.

D.

Kết quả khác.

Trả lời:

Đáp án đúng: A


The C program has a case-sensitive variable naming error. `a` and `b` are declared, but `A` and `B` are used for assignment. This will cause a compilation error as `A` and `B` are undeclared. Therefore, the program will fail to build.

Câu hỏi liên quan