Question: 9 Please write the output value of the following code. #include int main (void) { } char cstring[] = hello; int i=0, len=0; while(cstring[i]
9 Please write the output value of the following code. #include int main (void) { } char cstring[] = "hello"; int i=0, len=0; while(cstring[i] != '\0') { len++; i++;| } for (i = len-1; i >= 0; i--) printf("%c", cstring[i]); return 0; Figure 7
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
