Thursday, March 17, 2011

Tuturial C++

C++ is one of the most popular programming languages and its application domains include systems software, application software, device drivers, embedded software, high-performance server and client applications, and entertainment software such as video games. Several groups provide both free and proprietary C++ compiler software, including the GNU Project, Microsoft, Intel and Embarcadero Technologies. C++ has greatly influenced many other popular programming languages, most notably C# and Java.

C++ is also used for hardware design, where the design is initially described in C++, then analyzed, architecturally constrained, and scheduled to create a register-transfer level hardware description language via high-level synthesis.

basic C++

// my second program in C++
#include
using namespace std;
int main ()
{
cout << "Hello World! "; cout << "I'm a C++ program"; return 0; } this output program "Hello World! " "I'm a C++ program"

No comments: