There are currently no frequently asked questions associated with this exercise – that’s where you come in! You can contribute to this section by offering your own questions, answers, or clarifications on this exercise. Ask or answer a question by clicking reply () below.
If you’ve had an “aha” moment about the concepts, formatting, syntax, or anything else with this exercise, consider sharing those insights! Teaching others and answering their questions is one of the best ways to learn and stay sharp.
Join the Discussion. Help a fellow learner on their journey.
Ask or answer a question about this exercise by clicking reply () below!
You can also find further discussion and get answers to your questions over in #get-help.
Agree with a comment or answer? Like () to up-vote the contribution!
They asked you to differentiate the name of the c file (script.c) and the executable you compiled, like: gcc script.c -o helloworld, by doing that you are compiling the script.c file into a language understandable by the computer.
They choose to name this executable “helloWorld”
Since, you have done an “executable”, then you read this executable by ./"name of my executable"
Why do you get the correct output even after changing the code? say I had the code from this lesson #include <stdio.h>
int main() {
// output a line
printf(“Hello World!\n”);
}
gcc script.c -o helloWorld
./helloWorld
prints Hello World!
then I changed the code to #include <stdio.h>
int main() {
// output a line
prin
something that should give an error and then did
gcc script.c -o helloWorld
./helloWorld