Hey, what I am trying to do is change the way I assign a title on a dos command prompt, so basically change the title input from:
system("TITLE welcome to my page");
to:
title("Welcome to my page");
I have tried to code it however there are errors:
void title(const char *myTitle &mode)
{
system("TITLE myTitle");
}
Any ideas? Thank you