8 lines
222 B
C
8 lines
222 B
C
#include <stdio.h> //This is just a way to load in some functionality
|
|
|
|
int main() // defines the start of your program
|
|
{
|
|
// printf writes the text in quotes to the console
|
|
printf("Hello NAME"); // TODO change the text
|
|
}
|