Thursday, June 30, 2011

Behind the words:

# include <stdio.h>
# include <conio.h>
# include <string.h>
main ()
{
char o [20];
textcolor (8);
printf ("Enter a word:");
gets (o);
strrev (o);
cprintf ("If reversed into:% s", o);
getch ();
}

0 comments:

Post a Comment