Just make sure you don't use void main(), since main
never should be void. main is 'special', and the same rules, regarding void, does not apply to main. On some special systems void main is allowed, but a good thumb rule is to always define a return value, even though you may not use it. Under the C99 standard, int main(void) is actually the only acceptable (together with argc, argv of course), but the following code is ok:
Code:
int main() {
return 0;
}