(Choose 1 answer)
What is the output when the sample code below is executed?
int main() {
int a:
char c[]="Program";
for(a=0; c[a] !='\0'; a++)
if((a % 2) == 0)
printf("%c%c", c[a], c[a]);
return(0);
}
A. Program
B. Program Program
C. PPoorrmm
D. rrggaa
E. rrggaamm
E39