/* // The traditional first program in honor of // Dennis Ritchie, who invented C while // at Bell Labs in 1972. */ #include int main(void) { printf("Hello, world!\n"); return 0; }