Ok i really need help , im a beginner at c++ in college and learning the basics
Im using the right types of code on Visual C++ but every time i place a message in " cout << "My girl got a new car"; " my output says saying "Hello World!" and it's really pissing me off. how can i change my output????
1 2 3 4 5 6 7 8 9 10
#include <iostream>
usingnamespace std;
int main ()
{
cout << "My girl got a new car";
return 0;
}
You have to recompile it and rerun it each time you change something, and if you have multiple main files (programs) tabbed, make sure you are running the correct one with the corresponding output.