Dennis Ritchie passed away

essellar

Community Advocate
Community Support
Messages
3,295
Reaction score
227
Points
63
We're losing them far too quickly.

Dennis Ritchie, co-creator of both the Unix operating system and the C programming language, has passed away at the age of 70.

Code:
#include <stdio.h>     
   main()
    {
        printf("Goodbye, world.\n");
    }

And just to complete the day, Robert Galvin, a Motorola exec who, after seeing the communicator on the original Star Trek, gave us the cell phone, is no longer answering. He was 89.
 
Last edited:

ChatIndia

Community Advocate
Community Support
Messages
1,408
Reaction score
30
Points
48
oh, I am taking C programming this sem. So sad to hear it.

Code:
#include <stdio.h>

int main(void)
{

        system ("cls");
       
       printf("He was a great man");
       
       system ("PAUSE");

       return 0;

}
 
Last edited:
Top