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

  1. #include <stdio.h>
  2.  
  3. #define MAXLINE 80
  4.  
  5. main()
  6. {
  7.     char bin[MAXLINE+1];
  8.     int n, nargs = scanf("%[01]%d",bin,&n);
  9.  
  10.     printf("nargs: %d, bin: %s, n: %d\n",nargs,bin,n);
  11.     return 0;
  12. }
  13.  
  14. Input
  15. 1011035
  16.  
  17. Output
  18. nargs: 2, bin: 10110, n: 35
  19.