In the following exmple, how 'd I use sprintf when I have a boolean type of variable?
Code:
char s[64];
bool bVar = false;

sprintf(s, "This is a boolean variable bVar = %?", bVar);
What is supposed to replace ? in the sprintf statement ? Thanks.