Wikia

C Plus Plus

Watchlist Recent changes

Simple Program

Here you'll learn a very basic program. All you'll need is:

After get what I said, start coding!

// my first program in C++

#include <iostream>

int main ()
{
  std::cout << "Hello World!" << std::endl;
}

We could also write the above code like this

#include <iostream>
using namespace std;

int main()
{
  cout << "Hello World!" << endl;
  return 0;
}

but the line 2 involves the concept of Namespaces, which is something a little complex for novice programmers! In C++, unlike C, the return keyword on the main() function is optional.

Get help with C++ here: http://www.webmastertalkforums.com/c-c/

Pages on C Plus Plus

Add a Page
15pages on
this wiki
Advertisement | Your ad here

Latest Photos

Add a Photo
3photos on this wiki
See more >

Recent Wiki Activity

See more >

Around Wikia's network

Random Wiki