What is output?
#include <stdio.h>
#include <conio.h>
int print(int i);
void main()
{
int i = 6;
while(print(i) || --i);
getch();
}
int print(int i)
{
printf("%d, ", i);
return 0;
}
#include <stdio.h>
#include <conio.h>
int print(int i);
void main()
{
int i = 6;
while(print(i) || --i);
getch();
}
int print(int i)
{
printf("%d, ", i);
return 0;
}
6, 5, 4, 3, 2, 1,
6, 5, 4, 3, 2, 1, 0,
Complier Error
Infinite loop
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.