home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a120 / 1.ddi / WATCOM_C / WAT13.C < prev    next >
Encoding:
C/C++ Source or Header  |  1992-05-13  |  390 b   |  14 lines

  1. /*------------------------------------------------------------------*/
  2. /* ╡{ªí└╔ªW║┘: wat13.c                                              */
  3. /*------------------------------------------------------------------*/
  4. #include <stdlib.h>
  5. #include <stdio.h>
  6. void main()
  7. {
  8.  long int l;
  9.  char *string = "-123459" ;
  10.  
  11.  l = atol(string);
  12.  printf("ªrªΩ¼░: %s ¬°╛π╝╞¼░: %ld\n",string,l);
  13. }
  14.