Skip to content

Latest commit

 

History

History
 
 

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 
 
 
 
 
 
 

README.md

Installation

How to install GCC Compiler

$ sudo apt update
$ sudo apt install build-essential
$ sudo apt-get install manpages-dev

How to run

$ gcc HelloWorld.c -o HelloWorld
$ ./HelloWorld

How to Uninstall GCC Compiler

$ sudo apt-get remove build-essential
$ sudo apt-get remove manpages-dev