icp/oer/courses/example-course/sections/01-introduction/01-c-hello/program.c

9 lines
162 B
C
Raw Normal View History

2018-05-05 22:18:02 +00:00
#include <stdio.h>
int main(int argc, const char *argv[])
{
// TODO: use printf() to print "Hello World!" on the display.
printf("Hello world!");
return 0;
}