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

10 lines
248 B
C

#include <stdio.h> // Ignore this
int main(int argc, const char *argv[]) // the main function is the entrypoint to your program
{
// TODO: use printf() to print "Hello World!" on the display.
printf("Hello User!");
return 0; // Ignore this
}