strrev() - String Handling Functions C Programming /*Write a program to print the reverse String*/ #include #include #include void main() { char name[20]; printf("Enter the Name: "); scanf("%s",name); strrev(name); printf("\n Reverse String=%s",name); getch(); } Output is as : Enter the Name Bintu utniB Read more » Tweet Share Share Share Share Related Post
ConversionConversion EmoticonEmoticon