home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #19 / NN_1992_19.iso / spool / comp / lang / c / 12943 < prev    next >
Encoding:
Text File  |  1992-08-29  |  678 b   |  23 lines

  1. Path: sparky!uunet!zaphod.mps.ohio-state.edu!cs.utexas.edu!sun-barr!news2me.ebay.sun.com!exodus.Eng.Sun.COM!sun!amdcad!weitek!pyramid!infmx!subodn
  2. From: subodn@informix.com (Subodh Nijsure ( Su-bo-d Ni-j-su-ray ))
  3. Newsgroups: comp.lang.c
  4. Subject: Should C compiler flag error for this?
  5. Message-ID: <1992Aug27.235703.5614@informix.com>
  6. Date: 27 Aug 92 23:57:03 GMT
  7. Sender: news@informix.com (Usenet News)
  8. Organization: Informix Software, Inc.
  9. Lines: 11
  10. Originator: subodn@godzilla
  11.  
  12. For the following program should a C compiler flag an error or a warning.
  13.  
  14. #include <stdio.h>
  15. extern int i;
  16. static int i=30;
  17. main()
  18. {
  19.     printf("Value of i is %d\n",i);
  20. }
  21.  
  22. -Subodh ( smn@netcom.com )
  23.