What is the Error of this program?
#include
#define CONDITION(x)
printf("letsfindcourse");
int main()
{
CONDITION(0);
return 0;
}
Answer: B
#define CONDITION(x) must be terminated my backslash () to follow the next line.