#include <stdio.h> #include <conio.h> #define PRINT(i, limit) do \ { \ if (i++ < limit) \ { \ printf("laptrinhc++"); \ continue; \ } \ }while(1)

Thùy Moon

New member
#include <stdio.h>
#include <conio.h>
#define PRINT(i, limit) do \
{ \
if (i++ < limit) \
{ \
printf("laptrinhc++"); \
continue; \
} \
}while(1)
void main()
{
PRINT(0, 3);
getch();
}</blockquote>
What is output?
A. ‘laptrinhc++’ is printed 3 times
B. ‘laptrinhc++’ is printed 2 times
C. Complier error