10 lines
248 B
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
|
|
}
|