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