Thursday, November 3, 2011

C++ TUTORIAL

 http://www.cplusplus.com/files/tutorial.pdf  TUTORIAL DASAR C++ IN ENGLISH LANGUAGE Basics of C++ Structure of a program Probably the best way to start learning a programming language is by writing a program. Therefore, here is our first program: // my first program in C++#include <iostream>using namespace std;int main (){cout << "Hello World!";return 0;}Hello World! The first panel shows the source code for our first program. The second one shows the result of the program once compiled and executed. The way to edit...