Kizspy | Question: 25
(Choose 1 answer)
FUOVERFLOW
}
What is the output when the sample code below is executed?
#include<stdio.h>int main()
{
int x=10,i;
for(i=0;i<x;i+=3){
printf("One");continue;
printf("Two");
}
return 0;
A. OneOneOneOne
B. OneTwoOneOne
C. OneTwoTwoTwo
D. TwoTwoTwoOne