home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat178.c */
- /*------------------------------------------------------------------*/
- #include <string.h>
- #include <stdio.h>
-
- void main()
- {
- char *s = "FoxPro 2.0 API";
-
- printf(" ªrªΩ \"%s\" ªb░f┬α½ßª¿¼░", s);
- strrev(s);
- printf(" \"%s\" \n",s);
- }