Week 2 - Arrays, Compiling, Command Line Argument, Strings
Created: 2022-05-16 Tags: #permanent
gcc -Wall source_code.c –o output_name.exe ^ Switches explained -Wall to enable compiler's warning messages -o to specify the output name
gcc -Wall source_code.c –o output_name.exe
-Wall
-o
clang -o <output file> <input_file.c>