
----------------------
#include <iostream>
#include <cstdlib>
using namespace std;
void hello();
int main()
{
hello();
system("PAUSE");
return 0;}
void hello()
{
cout<<"Hello World"<<endl;}
--------------------------------
i have wrote this in this way as it is a function based, memory efficient, fast program.
making a small program doesnt mean it runs efficiently or faster.. try learning OO Concepts. makes life easier. if c is life then c++ is life with a cable connection. same thing with more spice








---->
Linear Mode
