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
I dont understand it at all i type " (gcc script.c -o helloWorld) " and tells me in the bottom in red to type gcc script.c -o helloWorld tried everything and the hint doesnt even say much at all
Hey, so you have to type "gcc script.c -o hello World " (without the quoatation marks) in the compiler (bash. right sight) and then Run the script. For the second task you need “./helloWorld”. Hope it helps
I’m trying to solve the problem (that I thought I understood), but I can’t get anything correct from any kind of way I try. And when I click on View Solution to see what I’m doing wrong it appears nothing on the correct side.
For this particular exercise, “View Solution” isn’t going to be helpful. The solution only shows the script.c file, whereas the exercise doesn’t involve editing the file. The exercise involves typing in commands in the bash terminal which aren’t shown by the “View Solution” option.
What EXACTLY are you typing in the terminal?
To share your attempted solution in a forum post, you can EITHER use the </> button to type in the commands you have tried entering in the terminal (the </> option helps preserve formatting of code in forum posts) OR you could take a screenshot (of the commands you have entered in the bash terminal) and upload it via the Upload button (The </> button will be simpler and less time consuming).
This will help clear up the nature of the mistake in your attempted solution.