/* Program 1.1 Your Very First C Program - Displaying Hello World */ #include <stdio.h> int main(void) { printf("Hello world! "); return 0; }