9 lines
162 B
C
9 lines
162 B
C
|
#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;
|
||
|
}
|