What is C++ ?
Started by
jakobi53
, Feb 14 2009 01:00 AM
#1
Posted 14 February 2009 - 01:00 AM
#2
Posted 14 February 2009 - 01:07 AM
Hello jakobi53
Dont know if this helps you out or not...
http://www.cprogramming.com/
Scroll down to Learn C and C++
And read to Debuggers Tutorials on using debuggers and advice on which debugger to choose.
Should be suffice information to get you started...
Good luck!!
&
Happy programming
Anthony19
Dont know if this helps you out or not...
http://www.cprogramming.com/
Scroll down to Learn C and C++
And read to Debuggers Tutorials on using debuggers and advice on which debugger to choose.
Should be suffice information to get you started...
Good luck!!
&
Happy programming
Anthony19
#3
Posted 14 February 2009 - 02:26 AM
C++ ("C Plus Plus", pronounced /ˌsiːˌplʌsˈplʌs/) is a general-purpose programming language. It is regarded as a middle-level language, as it comprises a combination of both high-level and low-level language features.[1] It was developed by Bjarne Stroustrup in 1979 at Bell Labs as an enhancement to the C programming language and originally named "C with Classes". It was renamed to C++ in 1983.
C++ is widely used in the software industry. Some of its application domains include systems software, device drivers, embedded software, high-performance server and client applications, and entertainment software such as video games. Several groups provide both free and commercial C++ compiler software, including the GNU Project, Microsoft, Intel, Borland and others.
The language began as enhancements to C, first adding classes, then virtual functions, operator overloading, multiple inheritance, templates, and exception handling among other features. After years of development, the C++ programming language standard was ratified in 1998 as ISO/IEC 14882:1998. The current standard is the 2003 version, ISO/IEC 14882:2003. The next standard version (known informally as C++0x) is in development.
C++ is a statically typed, free-form, multi-paradigm, compiled language where compilation creates machine code for a target machine hardware.
For more info, click here.
----------
As for an Integrated Development Environment(IDE), I would suggest using Blooshed Dev-C++. More info here.
----------
Simple Hello World program:
C++ is widely used in the software industry. Some of its application domains include systems software, device drivers, embedded software, high-performance server and client applications, and entertainment software such as video games. Several groups provide both free and commercial C++ compiler software, including the GNU Project, Microsoft, Intel, Borland and others.
The language began as enhancements to C, first adding classes, then virtual functions, operator overloading, multiple inheritance, templates, and exception handling among other features. After years of development, the C++ programming language standard was ratified in 1998 as ISO/IEC 14882:1998. The current standard is the 2003 version, ISO/IEC 14882:2003. The next standard version (known informally as C++0x) is in development.
C++ is a statically typed, free-form, multi-paradigm, compiled language where compilation creates machine code for a target machine hardware.
For more info, click here.
----------
As for an Integrated Development Environment(IDE), I would suggest using Blooshed Dev-C++. More info here.
----------
Simple Hello World program:
#include <iostream> //Library used input/output stream using namespace std; //Using this we don't have to put the .h //at the end of iostream(Research it) int main() { cout << "Hello World!" << endl; //Output to console system("PAUSE"); //Pauses the system to give you time to see //the output on the console return 0; }
#4
Posted 14 February 2009 - 02:36 AM
Hello Sockdown
Thank you for clearing that up for us
Anthony19
Thank you for clearing that up for us
Anthony19
#5
Posted 14 February 2009 - 02:41 AM
Hello Sockdown
Thank you for clearing that up for us
Anthony19
Hello Anthony19
You're welcome. I just wanted to give a little preview of C++ to (him/her). I know you provided(him/her) with a link and a little info. I just added a little bit more hehe.
-Sockdown-
#6
Posted 04 March 2009 - 05:47 PM
I'm pretty new too, so you might not take my advice, but generally you learn C++ after you have some knowledge in a easier programming language such as ruby, perl or php. People who start with C++ tend to get confused. I assume you're trying to make a video game or somethin'. Other languages could be used as well. To actually write the codes, you need to get a program such as microsoft visual C++, which you can download at http://www.microsoft.com/express.
Similar Topics
0 user(s) are reading this topic
0 members, 0 guests, 0 anonymous users