I'm new to the forum. First of all I don't know anything about C++.
I know some scripting languages( LUA, PHP-HTML ).
But I wanna learn C++.
I have few questions.
1. Is there any wiki for C++ ?
2. Where I can find C++ ? ( Like in any programs or games or whatever is it )
3. What file type is C++ ? ( .exe or what )
Thanks for quick repy.
One question more.
I have made the hello world. The first program on Documentation. So I've open the exe file with notepad ++ and I've insert the code in but nothing happens.
So I've open the exe file with notepad ++ and I've insert the code in but nothing happens.
what does that mean???
If you are putting the code in notepad then thats not going to work.
You will need a compiler first.If on windows then Visual c++ is best else use code::blocks.
I would suggest starting from this sites home page or doing a certificate in programming I'm doing mine atm. You'll need a compiler to run your code, I use DevC++
So I've open the exe file with notepad ++ and I've insert the code in but nothing happens.
Your understanding of C++ is somewhat off. HTML is an interpreted language, meaning your web browser will simply display out each line. C++ is an actual programming language, which needs to be compiled. When you are creating that "Hello world" program, you are actually creating a program.
He will actually walk you through what a compiler does, and how all of it works. These videos are what I used to get started, and all the info you need is really spoon fed to make it very easy to understand.