'default' as a variable name - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T21:06:23Z http://stackoverflow.com/feeds/question/664123 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/664123/default-as-a-variable-name 5 'default' as a variable name Agnel Kurian 2009-03-19T21:20:58Z 2009-03-19T21:50:06Z <p>While debugging some code, I came across an array named <code>default</code>. I thought that keywords were not allowed as variable names.</p> <pre><code>#include "stdafx.h" #include &lt;stdio.h&gt; int main() { int default = 5; printf("%d\n", default); return 0; } </code></pre> <p>Now the above code compiles without a hitch on VS 2008. Isn't 'default' a keyword? How come it works as a variable name? Side-effects?</p> <p><strong>PS:</strong> <code>Infragistics::Win::UltraWinToolbars::ToolbarsCollection</code> has a property with this name!</p> http://stackoverflow.com/questions/664123/default-as-a-variable-name/664134#664134 14 Answer by Neil Williams for 'default' as a variable name Neil Williams 2009-03-19T21:23:21Z 2009-03-19T21:23:21Z <p>It's a <a href="http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx?FeedbackID=382138" rel="nofollow">known issue</a> in VC++. Basically by-design for C++/CLI compatibility. </p>