Skip to content

SeriaLudo/c-programming-language

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 

Repository files navigation

The C Programming Language

Self-teaching C following "The C Programming Language" by Kernighan & Ritchie

Exercises

Chapter 1: A Tutorial Introduction

  • Exercise 1.1 - Hello, World! program
    • Source: main.c
    • Compilation: gcc -o bin/hello main.c
    • Run: ./bin/hello

Project Structure

├── chapter-1/
│   └── 1-1/           # Exercise 1.1: Hello, World!
│       ├── main.c     # Source code
│       └── bin/       # Compiled executables
│           └── hello  # Main executable
└── README.md

Useful links:

Audio/visual read-along from FreeCodeCamp

About

Self-teaching C

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages