Dennis Ritchie - RIP

egrep

Enlightened
Joined
Apr 30, 2011
Messages
631
Location
right here
Hear Hear, I owe much in my life to dmr. His passing puts an end to his suffering and may he rest in peace.


/* Goodbye World program */

#include<stdio.h>

main()
{
printf("Goodbye World");

}
 

flashflood

Enlightened
Joined
Mar 9, 2011
Messages
608
Hear Hear, I owe much in my life to dmr. His passing puts an end to his suffering and may he rest in peace.


/* Goodbye World program */

#include<stdio.h>

main()
{
printf("Goodbye World");

}

Missing newline in the printf.

No return statement, resulting in undefined exit status for the process.

:tsk:

My dog-eared copy of K&R -- operator precedence table on page 53! -- just became even more precious.

Thank you, and RIP.
 
Top