Please help!!!

I'm 13 and I know the basics of c++. I know variables, cout and cin. I can make very simple arithmetic rules and I can only make console applications. I have many questions.

Is there an easy way to learn c++ as a kid
How do you put in graphics
Can you not put graphics in a console application
What is the 'if' rule in c++ and how do you link it with cin and cout.
How do you stop the screen from closing after hello world
Last edited on
Is there an easy way to learn c++ as a kid


Try looking through some online tutorials like the one on this site
http://www.cplusplus.com/doc/tutorial/
or buy a beginners book.

How do you put in graphics


You need to download some external graphics library like SDL http://www.libsdl.org/. There are many others try googling them.

How do you stop the screen from closing after hello world
take at look here http://www.cplusplus.com/forum/beginner/1988/
Its like the only pinned thread in this forum ( expect for the rules).

What is the 'if' rule in c++ and how do you link it with cin and cout.

The 'if' keyword is used pretty similarly as we use it in speech. It is used to control the flow of the program. It is used to execute a statement or a block of code if some condition is met.
Again reading through the tutorials should help.
http://www.cplusplus.com/doc/tutorial/control/ - just about flow control.

I don't exactly get what you mean by linking it with cin and cout.
but perhaps something like this?
1
2
3
4
5
bool x = true;
if(x)
{
    cout<<"x is true";
}
Last edited on
Thanks for the help!!

Topic archived. No new replies allowed.