gcc compiler command code example
Example: compile with gcc
#Copy and paste this line in your terminal to compile your file with gcc
gcc -Wall filename.c -o filename
#To execute the file
./filename
#Copy and paste this line in your terminal to compile your file with gcc
gcc -Wall filename.c -o filename
#To execute the file
./filename