C++ is a powerful general-purpose programming language. It can be used to create small programs or large applications. It can be used to make CGI scripts or console-only DOS programs. C++ allows you to create programs to do almost anything you need to do. The creator of C++, Bjarne Stroustrup, has put together a partial list of applications written in C++.

I try to learn you c++ so easy way first you must now what you need whan you learn c++ than you beggan to learn c++ so easy way

// learn c++ easy way 

#include<iostream>
using namespace std;

int main()
{
cout <<"you able and you can do to learn c++ programming:";

system("pause");
return 0;
}

system("pause"); Don't use this to pause your program. This only works if you're using specific environment setups in windows. Instead, flush cin with cin.ingnore and wait for using input with cin.get if it's absolutly nessacary.

Also, you might want to consider posting this as a code snippit.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.