Page 1 of 1

A function is written as follows to print the characters in reverse order until a character 'Z' is entered through the k

Posted: Mon Jun 06, 2022 6:36 pm
by answerhappygod
A Function Is Written As Follows To Print The Characters In Reverse Order Until A Character Z Is Entered Through The K 1
A Function Is Written As Follows To Print The Characters In Reverse Order Until A Character Z Is Entered Through The K 1 (133.57 KiB) Viewed 24 times
write with data structure using c
A function is written as follows to print the characters in reverse order until a character 'Z' is entered through the keyboard. Write a non-recursive program to do the same where the charaders we to be taken from a linked list. #include<stdio.h> 12-16-44 char reverse(X) { scanf("%c",&x), if (x!='Z') reverse(x); printf("%c",x); } main(){ char x; Once you upload files from your second device, click on Sync to check your submission Use mobile device to scan and upload your answer sheets reverse(x); }