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

Never tell people how to do things. Tell them WHAT to do and they will surprise you with their ingenuity. -- Gen. George S. Patton, Jr.

Working...