V
vfunc
if I want to output some text in my own function how can I concatenate
with the argument ? Example
void mycout(const char *c)
{
std::cout << c << std::endl;
}
mycout("Here is some text. " << " And here is some more");
Which will not compile.
with the argument ? Example
void mycout(const char *c)
{
std::cout << c << std::endl;
}
mycout("Here is some text. " << " And here is some more");
Which will not compile.