home *** CD-ROM | disk | FTP | other *** search
/ NetNews Usenet Archive 1992 #26 / NN_1992_26.iso / spool / comp / sys / amiga / programm / 15647 < prev    next >
Encoding:
Text File  |  1992-11-10  |  1.1 KB  |  37 lines

  1. Newsgroups: comp.sys.amiga.programmer
  2. Path: sparky!uunet!destroyer!cs.ubc.ca!news.UVic.CA!ugly!aramsey
  3. From: aramsey@ugly.UVic.CA (Aaron  Ramsey)
  4. Subject: Re: ...messed simple c program?..stupid mistake
  5. Message-ID: <1992Nov10.222016.8675@sol.UVic.CA>
  6. Sender: news@sol.UVic.CA
  7. Nntp-Posting-Host: ugl-gw.uvic.ca
  8. Organization: University of Victoria, Victoria, BC, Canada
  9. References: <1992Nov10.184406.25907@sol.UVic.CA> <BxIpyB.E7@unx.sas.com>
  10. Date: Tue, 10 Nov 92 22:20:16 GMT
  11. Lines: 24
  12.  
  13. I can't believe that I posted that to the entire network....  It
  14. was such a stupid mistake. (how do I make an embarassed smiley??)
  15. Sorry for all the wasted bandwidth, and thanks to everybody who
  16. sent the polite mail... 8-) I shoulda got flamed big-time for
  17. that....
  18.                          ****STUPID CODE****
  19. :              for (counter = 0; counter < 5000; counter += 5) {
  20. :                    zoop[counter] = counter;
  21.  
  22.  
  23.           ****WHAT I REALLY WAS TRYING TO DO****
  24.  
  25.     for( counter = 0; counter < 999; counter++) {
  26.             zoop[counter] = i * 5;
  27.              
  28.  
  29.  
  30. Again, thanks alot to everybody who replied. I appreciate everybody's tact!
  31. 8-)
  32.  
  33. -Aaron
  34.  
  35.  
  36.  
  37.