+ 8
make sure you have a compiler.
If it is set up as a path environment variable, type (using the gnu compiler):
gcc [source file 1.c] [source2.c] [sourcen.c] -o [executable name]
g++ for c++ files
run it with
./executableName (Nix)
executableName (windows)



