I don't know what this is called, but here's what I'm trying to do:
I use the char* for other things also so I want to add the -t opt there
1) how to do it
2) what is it called
Code:
myfunc(const_charstr [color="DarkRed"]+ "sometext[/color]",arg2)
--example--
const char * MAIL_PROGRAM = "/usr/sbin/sendmail";
//...
//one of many failed trys
mail = popen (MAIL_PROGRAM [color="Red"]+ " -t"[/color], "w");
I use the char* for other things also so I want to add the -t opt there
1) how to do it
2) what is it called