1.

What will be the correct output of the following program?#includevoid main(){char str[] = "C EXAMINATION", rev[17];int i = strlen(str), j=0;for( ; i>=0; rev[j++] = str[i--])rev[j] =str[j] ;puts(rev);}

A. OITANIMAXE C
B. OITANIMAXE
C.
D. o output at all.
Answer» E.


Discussion

No Comment Found