/* An example C program that prints "Hello, world!" and a newline. */ #include <stdio.h> int main(void) { /* Format and output the message */ printf("Hello, world!\n"); return 0; }