Why does my "3n+1 problem" program not compile ? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-07T01:26:05Z http://stackoverflow.com/feeds/question/24881 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/24881/why-does-my-3n1-problem-program-not-compile 2 Why does my "3n+1 problem" program not compile ? The.Anti.9 2008-08-24T06:30:09Z 2009-11-21T13:52:50Z <p>I'm trying to solve <a href="http://online-judge.uva.es/p/v1/100.html" rel="nofollow">the 3n+1 problem</a> and I have a for loop that looks like this: </p> <pre><code>for(int i = low; i &lt;= high; ++i) { res = runalg(i); if (res &gt; highestres) { highestres = res; } } </code></pre> <p>Unfortunately I'm getting this error when I try to compile with GCC:</p> <blockquote> <p>3np1.c:15: error: âforâ loop initial declaration used outside C99 mode</p> </blockquote> <p>I don't know what C99 mode is. Any ideas?</p> http://stackoverflow.com/questions/24881/why-does-my-3n1-problem-program-not-compile/24882#24882 3 Answer by OysterD for Why does my "3n+1 problem" program not compile ? OysterD 2008-08-24T06:31:16Z 2008-08-24T06:31:16Z <p>I'd try to declare i outside of the loop!</p> <p>Good luck on solving 3n+1 :-)</p> http://stackoverflow.com/questions/24881/why-does-my-3n1-problem-program-not-compile/24884#24884 7 Answer by KiwiBastard for Why does my "3n+1 problem" program not compile ? KiwiBastard 2008-08-24T06:46:57Z 2008-08-24T06:46:57Z <p>There is a compiler switch which enables <a href="http://en.wikipedia.org/wiki/C99" rel="nofollow">C99 mode</a>, which amongst other things allows declaration of a variable inside the for loop. To turn it on use the compiler switch -std=c99</p> <p>Or as @OysterD says, declare the variable outside the loop.</p> http://stackoverflow.com/questions/24881/why-does-my-3n1-problem-program-not-compile/24888#24888 2 Answer by Blorgbeard for Why does my "3n+1 problem" program not compile ? Blorgbeard 2008-08-24T06:50:00Z 2008-08-24T06:50:00Z <p>I've gotten this error too.</p> <pre><code>for (int i=0;i&lt;10;i++) { .. </code></pre> <p>is not valid C, apparantly. As OysterD says, you need to do:</p> <pre><code>int i; for (i=0;i&lt;10;i++) { .. </code></pre> <p><strong>Followup question:</strong> I take it C99 is a later standard of the C language.. how does one tell the compiler to use it? What else does it add to the language?</p> http://stackoverflow.com/questions/24881/why-does-my-3n1-problem-program-not-compile/25892#25892 3 Answer by Imran for Why does my "3n+1 problem" program not compile ? Imran 2008-08-25T11:41:45Z 2008-08-25T11:41:45Z <p><a href="http://beta.stackoverflow.com/questions/24881/c-gcc-errors#24888" rel="nofollow">@Blorgbeard</a>:</p> <p><strong>New Features in C99</strong></p> <ul> <li>inline functions</li> <li>variable declaration no longer restricted to file scope or the start of a compound statement</li> <li>several new data types, including long long int, optional extended integer types, an explicit boolean data type, and a complex type to represent complex numbers</li> <li>variable-length arrays</li> <li>support for one-line comments beginning with //, as in BCPL or C++</li> <li>new library functions, such as snprintf</li> <li>new header files, such as stdbool.h and inttypes.h</li> <li>type-generic math functions (tgmath.h)</li> <li>improved support for IEEE floating point</li> <li>designated initializers</li> <li>compound literals</li> <li>support for variadic macros (macros of variable arity)</li> <li>restrict qualification to allow more aggressive code optimization</li> </ul> <p><a href="http://en.wikipedia.org/wiki/C99" rel="nofollow">http://en.wikipedia.org/wiki/C99</a></p> <p><a href="http://www.informit.com/guides/content.aspx?g=cplusplus&amp;seqNum=215" rel="nofollow">A Tour of C99</a></p> http://stackoverflow.com/questions/24881/why-does-my-3n1-problem-program-not-compile/1775550#1775550 0 Answer by boytheo for Why does my "3n+1 problem" program not compile ? boytheo 2009-11-21T13:52:50Z 2009-11-21T13:52:50Z <p>Just compile in C++ mode. You don't NEED to use classes to use C++. I basically use C++ as a "nicer C" :)</p> <p>I almost never use classes and never use method overiding.</p>