Qmark: 1
Total Marks: 50
Vol: 8
Font: Microsoft Sans Serif
Size: 10
Time Left:44:42
Multiple Choices
(Choose 1 answer)
What is the output when the sample code below is executed?
char f[]="morning";
int i=0;
while(f[i] != 'n') {
printf("%c%c",f[i],*(f + i+1));
i++;
}
A. mmoorrnm
B. mmoorrn
C. moorrn
D. mmoorr
E. morning