Okay, so I think I've downloaded everything properly, but there is only one way to find out.
We created a program called hello world.
(I called mine hello worlda, since this is not my first hello world).
You should see on the top bar, a "run" tab, if you click on it you will get a list of functions. Open the console function. The console is where all the magic of our programming happens. This is where you see the fruits of your labor.
With any luck you see a screen that looks like this.

Now to test if we had install everything properly, if you click build and go you should see on the console. (session started) and the magical "Hello, World!" Yessss, we did it!!! But wait, that is actually the default program, so you'll always get "Hello, Word!". We actually just cheated to get our first hello world. So lets go into the code and see what is happening. And actually make hello world from scratch.
On the left hand side you see the project folder with hello world, you'll see the source, documentation, and products. Well, I can tell you I know next to nothing on most of those.
Click on source and you'll see a file name main.c, that is the meat of our first program.
Below the file name, there is a window, called the editing window. That is where the code we will write goes.
the #include form what I gather is like a set of rules for the program you are about to make. So the computer knows what rules it is going to follow. I may not be saying this right, but I'll edit this in the future if I can think of a better example.
The next part is the int main. This is what c programmers called a function. A function is basically the task that you want the computer to do. So therefore the int main in this case is the task of writing hello world.
Now we have to tell the computer how to write hello world and where. This is were another function printf comes in. Well, I consider it a function because it is tell the computer to do something. printf tells the computer that you want to print something on the console.
you printf from int main by brackets. Programmers love brackets because this keeps the computer for getting confuse. It is essential in keeping the computer focus and on track.
To use the printf(). We have to write what to print. We put what we want to print inside the printf brackets. We insert what we want to say in between two quotations marks. The computer knows that anything in quotations will be the actually saying.
So lets delete all the things after int main, and see if we can get hello world, from scratch.
we'll put curly brackets { printf ( "hello world\n"); return 0;. why the \n? well that tells the computer to return the cursor to the next line. You may also wonder why did we put ; at the end of printf? the ; is actually very important. From what I read it is like putting a period at the end of a sentence. If you do not have ; the computer will get confuse very easily.
Lastly, what is this return 0? (that's return zero, not o.) That is to tell the computer everything is done with printf and return the control back to main. It's like telling the computer, you've done the task, good job.
With any luck you won't have any nasty syntax errors. Syntax errors is the computer telling you that your grammar is wrong. It does not understand what you are trying to say. Not the end of the world. Usually I find I might have forgot a ; or a closing bracket somewhere.
YEEESSS, we did it, the console this time reads "hello world"!!. We wrote a program from scratch and the computer understood us. I would pat myself on the back if I could, this is actually pretty good for someone with no programming experience. The first program that all programmers write is done.
So recap, we learn how to create projects in c, learn that to get the computer to do something you need functions. Functions are the task that you want to do. We learn about the printf, the all import ; and return 0. Not bad, that is the very very basic things in c.
Nex: Onward to variables and operators.