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

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