What is output of code?
#include <stdio.h>
#include <conio.h>
void main()
{
int i;
i = 10;
if(i == 20 || 30)
printf("True");
else
printf("False");
getch();
}
#include <stdio.h>
#include <conio.h>
void main()
{
int i;
i = 10;
if(i == 20 || 30)
printf("True");
else
printf("False");
getch();
}
True
False
Complier error
Hãy suy nghĩ và trả lời câu hỏi trước khi xem đáp án
Tổng hợp câu hỏi trắc nghiệm lập trình C/C++ có đáp án và lời giải đầy đủ nhằm giúp các bạn dễ dàng ôn tập lại toàn bộ các kiến thức.