my program outputs this: it outputs the string:"I'm the best Heitz around",
then executes the for loop (un)successfully, because when the for loop is finished with it's output the program goes back to the beginning and once again outputs the string "I'm the best Heitz around".??? Once only. Why?
Nevermind sort of. I found the error. In the for loop there should be a < sign only, and not an = sign. Funny though that it looped back to the beginning of the program. I guess I'll post this in case someone else has the same thing happening.
here is my code:
#include <iostream>
using namespace std;
int main()
{
char* myStandard = "I'm the best Heitz around";
cout << myStandard << endl;