Welcome to Language_C_learning โ a collection of beginner-friendly C language programs.
This repository is designed to help you understand the basics of C programming through practical examples and simple code files.
File Name | Description |
---|---|
hello_world.c |
Your first C program โ prints "Hello, World!" to the console. |
input.c |
Demonstrates how to take user input using scanf . |
variable.c |
Shows the use of different variable types in C. |
comment.c |
Explains single-line and multi-line comments in C. |
simple_SUM.c |
A simple program to add two numbers. |
b.exe , c.exe , d.exe , e.exe |
Compiled executable files for quick testing. |
Make sure you have a C compiler like GCC installed.
# Compile a program (example: hello_world.c)
gcc hello_world.c -o hello_world
# Run the compiled program
./hello_world