What should a script that compiles and executes a C program look like? By condition, the script must be run with the following flags: gcc -Wall -Werror -Wextra -o
In my understanding, when running the script, I have to enter the name of the program file
% gcc -Wall -Werror -Wextra "file_name".c -o "file_name"
% ./"file_name"
gcc ... "$file".c && ./"$file".