Name:
Anonymous
2006-01-19 6:04
What are your CFLAGS and why do they kick in better than the rest?
Name:
Anonymous
2006-01-19 17:54
-Wall -ansi -pedantic
To stop the damn undergrads from using fore-sighted compiler extensions like dynamic array allocation with static array syntax.
Thou shalt not:
<code>
int a;
cin >> a;
int b[a];
</code>