FAQ: Hello World - Compiling

This community-built FAQ covers the “Compiling” exercise from the lesson “Hello World”.

Paths and Courses
This exercise can be found in the following Codecademy content:

Learn C

FAQs on the exercise Compiling

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 (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 (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 (like) to up-vote the contribution!

Need broader help or resources? Head to #get-help and #community:tips-and-resources. If you are wanting feedback or inspiration for a project, check out #project.

Looking for motivation to keep learning? Join our wider discussions in #community

Learn more about how to use this guide.

Found a bug? Report it online, or post in #community:Codecademy-Bug-Reporting

Have a question about your account or billing? Reach out to our customer support team!

None of the above? Find out where to ask other questions here!

This lesson is a little consusing at first.

The solution to the first Instruction would be “gcc script.c -o script”. After that, I am a little confused to what is to be done exactly. Any help?

1 Like

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"

3 Likes

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

why does it still print Hello World!

I am so confused as to what to write onto the bash compiler. Could anybody help? Thanks

Have you look at the comment above FAQ: Hello World - Compiling - #3 by _elmn ?

What have you tried entering in the bash terminal? That may offer a clue as to the nature of your mistake.

I’ve tried that and what it tells me to type in won’t work either.

What are you typing? Can you kindly copy paste here exactly what you are typing?

this is exactly what I am typing into the bash terminal. I would really appreciate the help
gcc helloWorld.c -o helloWorld

PLEASE DISREGARD!! Was able to figure it out. Thank you!

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

[codebyte]

i figured it out had to to type it in the bash console? i think its called. really didnt understand it all can someone talk me thru it?

can you tell me how did you figure it out, please?

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 :slight_smile:

I think that wasnt his problem, he says he had to type it in the bash console with a question mark that may mean he was not typing it there.

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.

scrn1

Hii guys , i have unable to understand this lesson. can someone pls help me to figure it out.