My purpose in making this web site is to share my own knowledge and the information that I have hardly reached. I hope I can help you.
Continue reading...
C++ TUTORIALS
1 2 3 4 5 6 7 8 9 10
// my first program in C++ #include <iostream> using namespace std; int main () { cout << "Hello World!"; return 0; }
Hello World!
// my first program in C++
//
#include <iostream>
#
using namespace std;
int main ()
main
()
{}
cout << "Hello World!";
cout
;
return 0;
1 2 3 4 5
int main () { cout << " Hello World!"; return 0;
NEXT