Show the exact screen-output of each of the following programs
Answer:Code:#include<stdio.h> void rev( ) //function { char ch; scanf("%c", &ch); //reads what you entered in main if (ch < 'z') //general case rev (); printf ("%c", ch); //base case } //end of function void main() { printf("Enter any word and then press enter\n"); rev (); //function call } //end of main Hint: Assume the user’s input was: ysaezr
i dont konw how to get the above answerCode:Enter any word and then press enter ysaezr zeasy



LinkBack URL
About LinkBacks



