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 

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

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Algorithms Questions!