Kizspy Question: 20
(Choose 1 answer)
What is the output when the sample code below is executed?
#include <stdio.h>
int main()
{
int x=7;
for(;x>3;)
printf("Yes");
x--;
return 0;
FUBVERFLOW Ban
A. Infinite loop
B. Compile time error
C. Yes Yes Yes Yes
D. Yes