There are many videos on youtube that may help you learn C++. |
#include <iostream.h> //ALWAYS INCLUDE THIS! #include <stdio.h> //IF You want to pause use this. using namespace std; main() { cout << "Hello World!\n"; cout << "I'm a c++ program!\n"; system ("pause"); return 0; } |
|
|
|