Here is a simple "hello world" program.
int main(){
std::cout << "hello world\n";
return 0;
}
How do I make the program print "hello world"+{some other string} for example: "hello world this is my string" without touching and changing the main ?. I tried to overload the << operator of string but it didn't work. thank you.