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

  1. #include <stdio.h>
  2.  
  3. main()
  4. {
  5.     int n;
  6.     char c;
  7.  
  8.     while (scanf("%d , %c%*c",&n, &c) == 2)
  9.         printf("%d, %c\n",n,c);
  10.     return 0;
  11. }
  12.  
  13. INPUT
  14. -----
  15. 123,a
  16. 123 , a
  17. 123
  18. ,
  19. a
  20. 123a
  21.  
  22. OUTPUT
  23. ------
  24. 123, a
  25. 123, a
  26. 123, a
  27. <error>
  28.