Chapter 1 – Your First C Program

Chapter 1 – Your First C Program

Welcome to /learn/code/play.

TipTry it yourself

Change the message in printf and recompile. Can you print your name and your favorite game in a single line?

```c #include <stdio.h>

int main(void) { printf(“Hello from /learn/code/play!”); return 0; }