How to install C in Ubuntu

Опубликовано: 13 Июнь 2026
на канале: iTCareer Talk
82
3

In this video explaining about the installation, compile and run C program using gcc in Ubuntu.
==============================
sudo apt install gcc
======== OR ==================
sudo apt install build-essential
=============================
To compile the code of the file "hello.c" use the below command:
gcc -o hello hello.c
=============================
To execute the program use the below command:
./hello
=============================