Point out the error in the program
#include <stdio.h>
#include <conio.h>
int f(int a)
{
a > 20 ? return(1) : return(0);
}
void main()
{
int f(int);
int b = f(20);
printf("%d", b);
getch();
}
#include <stdio.h>
#include <conio.h>
int f(int a)
{
a > 20 ? return(1) : return(0);
}
void main()
{
int f(int);
int b = f(20);
printf("%d", b);
getch();
}
Error: Prototype declaration
No error
Error: return statement cannot be used with conditional operators
None of above
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.