Ad space (banner)
🔧C Lessons
Lesson 1 / 68

Getting Started

To run C, you need a "compiler" that converts code into machine language. C is a historic language born in the 1970s, still in active use today — the root that influenced the syntax of countless languages, including Python, Java, and JavaScript.

  • Mac: run xcode-select --install in your terminal to get a compiler (clang).
  • Windows: MinGW or WSL (Windows Subsystem for Linux) are the standard choices.
  • Linux: many distributions come with gcc pre-installed, or it's easy to add.

Once set up, compile with gcc filename.c -o output-name and run with ./output-name.

← Previous lesson Next lesson →
Ad space (banner)
Ad space (in-article)