Top

Discussion

What is the Error of this program?

#include 
#define CONDITION(x) 
printf("letsfindcourse");                         
int main()
{
  CONDITION(0);
  return 0;
}

 

  • A.letsfindcourse
  • B.Compilation error
  • C.Runtime error
  • D.None of the above

Answer: B

#define CONDITION(x) must be terminated my backslash () to follow the next line.

No comment is present. Be the first to comment.
Loading…

Post your comment