1.

#include <stdio.h>#define ISEQUAL(X, Y) X == Yint main(){#if ISEQUAL(X, 0)printf("Geeks");#elseprintf("Quiz");#endifreturn 0;}Output of the above program?(A) Geeks(B) Quiz(C) Any of Geeks or Quiz(D) Compile time error

Answer»


Discussion

No Comment Found

Related InterviewSolutions