'default' as a variable name - Stack Overflow most recent 30 from stackoverflow.com2009-12-01T21:06:23Zhttp://stackoverflow.com/feeds/question/664123http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/664123/default-as-a-variable-name5'default' as a variable nameAgnel Kurian2009-03-19T21:20:58Z2009-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 <stdio.h>
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#66413414Answer by Neil Williams for 'default' as a variable nameNeil Williams2009-03-19T21:23:21Z2009-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>