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, duration hours minute second in high quality that is uploaded to the channel CS Student Strategies 02 November 2020. Share the link to the video on social media so that your subscribers and friends will also watch this video. This video clip has been viewed 6,078 times and liked it 82 visitors.