How To Install GCC Compiler on Arch Linux

Published: 02 November 2020
on channel: CS Student Strategies
6,078
82

Install GCC Compiler on Arch Linux from the command line with 1 command.
Install GCC:

sudo pacman -S gcc


Create Source File - hello.c:
#include "stdio.h"
int main(){
printf("Hello World");
return 0;

}


Compile hello program:
gcc -o hello hello.c


Run program:
./hello


Watch video How To Install GCC Compiler on Arch Linux online without registration, duration hours minute second in high quality. This video was added by user CS Student Strategies 02 November 2020, don't forget to share it with your friends and acquaintances, it has been viewed on our site 6,078 once and liked it 82 people.