home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1993 #3 / NN_1993_3.iso / spool / comp / lang / c / 20217 < prev    next >
Encoding:
Text File  |  1993-01-27  |  629 b   |  20 lines

  1. Newsgroups: comp.lang.c
  2. Path: sparky!uunet!hobbes!md
  3. From: md@sco.COM (Michael Davidson)
  4. Subject: Re: Could someone answer my question....thanks
  5. Organization: The Santa Cruz Operation, Inc.
  6. Date: Mon, 25 Jan 1993 19:27:55 GMT
  7. Message-ID: <1993Jan25.192755.10839@sco.com>
  8. References: <1993Jan26.000105.10930@njitgw.njit.edu>
  9. Sender: news@sco.com (News admin)
  10. Lines: 8
  11.  
  12.  
  13. csc5840@hertz.njit.edu (Sekhar Chitti) writes:
  14.  
  15. >        puts("%d - %s",i,arg2[i]);
  16.  
  17. puts() is used to write a string followed by a linefeed character
  18. to standard output - it does not support multiple arguments and
  19. formatted output - try using printf() instead ....
  20.