Thread: C++
View Single Post
  #2 (permalink)  
Old March 6th, 2007, 10:01 PM
mastrgamr mastrgamr is offline
Authorized User
 
Join Date: Oct 2006
Posts: 15
Thanks: 0
Thanked 0 Times in 0 Posts
Send a message via MSN to mastrgamr
Default

C++ is a computer language itself. used to make applications, games, etc.. It is not possible to download the language because you have to learn it. Source code is what you look at when you want to see how an application (made by the C++ language) is made. For example here is a source code that many C++ learners begin with called "hello world" source code:

Code:
#include<iostream.h>
using namespace std;

int main() {
cout<<"Hello world";
}
Mŧ~|~®GÃ(v)R~
Reply With Quote