How To Access C 🆕 Plus

Unlike Python or JavaScript, C is a compiled language. You can’t just run it in a web browser (easily). You need a to translate your human-readable code into machine code.

sudo apt update sudo apt install gcc Verify with: gcc --version how to access c

Then in the terminal:

#include <stdio.h> int main() printf("Hello, World!\n"); return 0; Unlike Python or JavaScript, C is a compiled language

Open the terminal and type: