#include /******************************************* * Introductory program for C that prints * "Hello, world" to the console * * Author: Sarah Heckman ******************************************/ int main() { printf("Hello, world!!\n"); return 0; }