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