Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 671 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 671 Bytes

Assessment 01: Hello World

Objective

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.

Instructions

  1. Create a file named assessment_01.c.
  2. Write a C program that prints "Hello, World!" to the console.
  3. Compile the program using a C compiler (e.g., gcc assessment_01.c -o hello).
  4. Run the compiled program.

Expected Output

Hello, World!

Skills Covered

  • Understanding the basic structure of a C program.
  • Writing and running your first C program.
  • Basic use of a C compiler.