The goal of this assessment is to write your first C program that prints "Hello, World!" to the console. This will introduce you to the basic structure of a C program and how to compile and run C code.
- Create a file named
assessment_01.c
. - Write a C program that prints "Hello, World!" to the console.
- Compile the program using a C compiler (e.g.,
gcc assessment_01.c -o hello
). - Run the compiled program.
Hello, World!
- Understanding the basic structure of a C program.
- Writing and running your first C program.
- Basic use of a C compiler.