Forgot your password?
typodupeerror

Comment Re:Every MS Patch is Utmost Severe? (Score 1) 147

In practice it often really is so; however, there's no obligation for the compilers to actually do it. For example, gcc actually warns if that is assumed:
<b>$</b> cat test.c
#include <stdio.h>

int main()
{
printf("Hello, World!\n");
}

<b>$</b> gcc test.c -o test -Wall
test.c: In function `main':
test.c:6: warning: control reaches end of non-void function
So we really should return politely from the main function.

Slashdot Top Deals

Of course you can't flap your arms and fly to the moon. After a while you'd run out of air to push against.

Working...