Hello World Program
Create project file/directory
create hello.c
#include <stdio.h> (for standard I/O)
/* Infamous “hello world” program */
main() (starting point for execution)
{ (blocks of statements surrounded by {})
printf (“Hello, world\n”);
}
Previous slide
Next slide
Back to first slide
View graphic version