How to Begin Programming C++?
What is C++?
C++ is the most popular programming language which is used with a lot of OS. For example; MacOS is made with C++, Objective-C, Swift or Windows is made with only C++ and Machine Language.
C++ is C with Classes in Wikipedia.
Why Should I Learn C++?
Ways of Job are so much and everything is made from C and C++. If you learn this programming language, believe me; you will not learn just C++. A lot of programming languages made with C and C++.
Downloading Links
There are a lot of IDE's for C++ languages. I recommend the Eclipse for C++. But you should download 1 file more if you want to use Eclipse.
- Java SE Dev Kit. - Download It
- Eclipse IDE for C/C++ Developers - Download It
- GCC Compiler - Download It
GCC Compiler requires to C++ Compiler. C++ code should be compiled and to compile you should download it.
Example Code
//============================================================================ // Name : HelloWorld.cpp // Author : https://codeloggerz.blogspot.com/ // Version : // Copyright : Code LoggerZ // Description : Hello World in C++, Code LoggerZ //============================================================================ #include <iostream> using namespace std; int main() { cout << "Hello World - Code LoggerZ" << endl; // prints "Hello World - Code LoggerZ" return 0; }
Comments
Post a Comment