This repository contains projects and exercises for studying the C programming language.
This is a simple program that prints "Hello, World!" to the console. It serves as an introductory example for learning the basics of C syntax and structure.
hello_world.c
: Source code for the Hello World program.
To compile and run the Hello World program, use the following commands:
gcc hello_world.c -o hello_world
./hello_world