Why does my "3n+1 problem" program not compile ? - Stack Overflow most recent 30 from stackoverflow.com2009-12-07T01:26:05Zhttp://stackoverflow.com/feeds/question/24881http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/24881/why-does-my-3n1-problem-program-not-compile2Why does my "3n+1 problem" program not compile ?The.Anti.92008-08-24T06:30:09Z2009-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 <= high; ++i)
{
res = runalg(i);
if (res > 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#248823Answer by OysterD for Why does my "3n+1 problem" program not compile ?OysterD2008-08-24T06:31:16Z2008-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#248847Answer by KiwiBastard for Why does my "3n+1 problem" program not compile ?KiwiBastard2008-08-24T06:46:57Z2008-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#248882Answer by Blorgbeard for Why does my "3n+1 problem" program not compile ?Blorgbeard2008-08-24T06:50:00Z2008-08-24T06:50:00Z<p>I've gotten this error too.</p>
<pre><code>for (int i=0;i<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<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#258923Answer by Imran for Why does my "3n+1 problem" program not compile ?Imran2008-08-25T11:41:45Z2008-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&seqNum=215" rel="nofollow">A Tour of C99</a></p>
http://stackoverflow.com/questions/24881/why-does-my-3n1-problem-program-not-compile/1775550#17755500Answer by boytheo for Why does my "3n+1 problem" program not compile ?boytheo2009-11-21T13:52:50Z2009-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>