Skip to content

Latest commit

 

History

History
51 lines (38 loc) · 1.4 KB

File metadata and controls

51 lines (38 loc) · 1.4 KB

💻 C-Language Programs

GitHub repo size GitHub stars GitHub last commit GitHub


🧠 Overview

This repository contains my C language practice programs — organized topic-wise to help understand the fundamentals of programming.
It includes everything from basic syntax and input/output to loops, conditions, and pattern printing.
Perfect for beginners who want to revise or learn C step-by-step. 🚀


📂 Folder Structure

Folder Description
🧾 Basics Programs covering syntax, variables, and input/output and some basic ques.
🔀 Conditional Statements if, if-else, nested if, and switch examples
🔁 Loops Programs using for, while loops
🟩 Pattern Star and number pattern programs (Square & Triangle)

🧩 Topics Covered

  • Introduction to C
  • Data Types & Variables
  • Operators
  • Conditional Statements
  • Loops
  • Pattern Printing

⚙️ How to Run

To compile and run any program using GCC:

gcc filename.c -o output
./output

Example:

gcc Basics/hello.c -o hello
./hello