adplus-dvertising
frame-decoration

Question

What is the Error of this program?
#include <stdio.h>
#define CONDITION(x) 
printf("compsciedu");                         
int main()
{
  CONDITION(0);
  return 0;
}

a.

compsciedu

b.

Compilation error

c.

Runtime error

d.

None of the above

Answer: (b).Compilation error

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the Error of this program?