2018-05-05 23:19:22 +01:00

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
}