//09_String //parc_07 //strrev() function in c //It reverse the given string #include #include #include void main() { char s1[]="Imacc Education"; clrscr(); printf("\n Source String=%s",strrev(s1)); getch(); } /* ------output------ Source String=noitacudE ccamI */