Wednesday, February 26, 2014

"The coding Legend Dennis Ritchie's Last program"

Dennis Ritchie, the creator of C programming language and Unix operating system who served a lot to programming languages.He is the one who started the program called "Hello World" which is well known to all the developers.He ended his life with a program "Bye world".Here is the program which is so easy to understand but hard to Execute.

#include <stdio.h>

int main()
{
printf("Good Bye World \n");
 return 0;

}

Lets hope this legend stays in all the programmers hearts for ever!

2 comments: