Introducing interesting programs for you
#include<stdio.h> #include<string.h> main() { char str[50]; printf("enter the string\n"); gets(str); strrev(str); printf("reversed string is : %s\n",str); }
No comments:
Post a Comment