 |
Programming Tutorial: Reverse String Program in C
Reverse String Program in C /*Program to Reverse String*/ #include #include #include void main() { char str[20]; char rev[20]; long len; int i,j; printf("\n Please enter any string of length:"); scanf printf("\n String entered is:%s ...
ccppcoding.blogspot.com |
 |