#include<stdio.h>
int main

Loading

Choose the correct option.

#include
int main()
{
int i = 0;
for (printf("1st "); i < 2 && printf("2nd "); ++i && printf("3rd "))
{
printf("* ");
}
return 0;
}

 

A. 1st 
2nd 
3rd

2nd 
3rd
B. 1st 
2nd 

3rd 
2nd 
*
C. 1st 
2nd 

3rd 
2nd 

3rd
D. 1st 
2nd 
3rd

1st
2nd 
3rd