Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 586 Bytes

File metadata and controls

33 lines (23 loc) · 586 Bytes

Problem Solving While Learning C

This repository contains my solutions to LeetCode problems using C programming language.

Overview

The solutions include:

  • String manipulation
  • Mathematical computations
  • Data structure implementations
  • Algorithm practice
  • And more...

How to Compile and Run

# Compile any C file
gcc filename.c -o filename -lm

# Run the program
./filename

Learning Focus

These exercises help me improve:

  • C programming skills
  • Understanding of algorithms
  • Problem-solving abilities
  • Memory management
  • Efficient coding practices