Include
#include <iostream>
This step is important to do,
this include the things we declare
Step 2 :
Main Function
int Main()
{
}
This is the function where we declare everything
Step 3:
namespace std
using namespace std;
This function made it easy to program with the namespace std
Step 4:
Draw the text
cout << "Helloworld !\n";
Step 5 :
Pause the console
System("pause");
return 0;
Compile and run, You have made your first c++ program!
Soon more:)
Edited by WingedPanther, 24 April 2009 - 11:31 AM.
add return 0;


Sign In
Create Account


Back to top









