home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_10 / 1010026b < prev    next >
Text File  |  1992-08-10  |  290b  |  20 lines

  1. #include <stdio.h>
  2.       
  3. #define MAXLINE 80
  4.  
  5. main()
  6. {
  7.     char s1[MAXLINE+1], s2[MAXLINE+1];
  8.     int n1, n2;
  9.           
  10.     scanf(" %[^,],%i ,%i , %[^\n]",s1,&n1,&n2,s2);
  11.     printf("%s,%d,%d,%s\n",s1,n1,n2,s2);
  12.     return 0;
  13. }
  14.  
  15. Input
  16. key 1,0x20,10,value one
  17.  
  18. Output
  19. key 1,32,10,value one
  20.