home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_06 / 1006099a < prev    next >
Text File  |  1992-03-26  |  269b  |  18 lines

  1.  
  2. #include <stdio.h>
  3.  
  4. #define MAX_LEN 10
  5. #define EDIT_MASK(size) "%" #size "s"
  6.  
  7. main()
  8. {
  9.     char str[MAX_LEN + 1];
  10.  
  11.     printf("Enter string (max length %u): ", MAX_LEN);
  12.     scanf(EDIT_MASK(MAX_LEN), str);
  13.     printf("str contains >%s<\n", str);
  14.  
  15.     return (0);
  16. }
  17.  
  18.