Does the infomation make a differance to the programs speed?
// Operating with hello world
#include <iostream>
using namespace std;
int main ()
{
// Print out the result:
cout << "Hello World! ";
cout << "This is my program";
// Keep program running:
cin.get();
//Terminate the program:
return 0;
}
And also is it ok if i change it to this to use less space...
// Operating with hello world
#include <iostream>
using namespace std;
int main ()
{
// Print out the result:
cout << "Hello World! ";
cout << "This is my program";
// Keep program running:
cin.get();
//Terminate the program:
return 0;
}