void main()void main()int x = 0;switch(x)case 1: printf( One );case 0: printf(
Xuất bản: 04/11/2020 - Cập nhật: 04/11/2020 - Tác giả: Hà Anh
Câu Hỏi:
void main()
{
int x = 0;
switch(x)
{
case 1: printf( "One" );
case 0: printf( "Zero" );
case 2: printf( "Hello World" );
}
}
{
int x = 0;
switch(x)
{
case 1: printf( "One" );
case 0: printf( "Zero" );
case 2: printf( "Hello World" );
}
}
What is the result of the following code?
Câu hỏi trong đề: Câu hỏi trắc nghiệm lập trình C/C++ có đáp án - Phần 1
Đáp án và lời giải
đáp án đúng: D