1.

#include <stdio.h>#define PRINT(i, limit) do \{ \if (i++ < limit) \{ \printf("GeeksQuiz\n"); \continue; \} \}while(1)int main(){PRINT(0, 3);return 0;}How many times GeeksQuiz is printed in the above program?(A) 1(B) 3(C) 4(D) Compile-time error

Answer»


Discussion

No Comment Found

Related InterviewSolutions