home *** CD-ROM | disk | FTP | other *** search
- /*------------------------------------------------------------------*/
- /* ╡{ªí└╔ªW║┘: wat13.c */
- /*------------------------------------------------------------------*/
- #include <stdlib.h>
- #include <stdio.h>
- void main()
- {
- long int l;
- char *string = "-123459" ;
-
- l = atol(string);
- printf("ªrªΩ¼░: %s ¬°╛π╝╞¼░: %ld\n",string,l);
- }
-