home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_03 / 1003064a < prev    next >
Text File  |  1992-01-12  |  135b  |  7 lines

  1.  
  2. unsigned long la, lb, lc;
  3. printf("Longs are %lu %lu %lu", la, lb, lc);
  4. printf("Bad way to print longs %u %u %u", la, lb, lc);
  5.  
  6.  
  7.