Search for notes by fellow students, in your own course and all over the country.

Browse our notes for titles which look like what you need, you can preview any of the notes via a sample of the contents. After you're happy these are the notes you're after simply pop them into your shopping cart.

My Basket

You have nothing in your shopping cart yet.

Title: c++
Description: basic level lesson help the student code in c++ like the lesson make the w3school

Document Preview

Extracts from the notes are below, to see the PDF you'll receive please use the links above


CODE IN C++

How first code of C++
(Hello WORD)

1: How first code of C++
(Hello WORD)
#include
using namespace std;
///
//=> 1
...

//=> 2
...

//=> 3
...

//=> 4
...

//=> 5
...
\n use system("pause")=> screen holding if use complier visual studio 2015
///
int main()// main body int main // supose :( int)
{
cout << " HELLO WORD \n";
system("pause");
return 0;// so return 0 to the (int)
}

Output:


Title: c++
Description: basic level lesson help the student code in c++ like the lesson make the w3school