How many times “Nagarro” will get printed?


		
					

Loading

โœช Choose the correct option.

How many times “Nagarro” will get printed?


#include

int main()

{

int x;



for (x=-1; x<10;x++)

{

if (x<5)

continue;

else

break;

printf("Nagarro");

}

return 0;

}

A. Infinite times
B. 11 times
C. 0 times
D. 10 times