Just wondering how exactly you display a string with printf(). As when ever I try displaying one of the strings I create with printf() like this printf("%s", myString); It will say null when it displays in the console. But lets say I'm displaying the same myString using std::cout instead. It will display whats inside the string.
So basically just wondering if I'm using printf() wrong?