/* * "Hello world" program: Prints "hello, world" to standard output. * * Author: B. L. Massingill * * (If I were a student and this were homework, I would write "pledged" here.) */ #include int main(void) { printf("hello, world\n"); return 0; }