How to fix gcc -Wall "embedded '\0' in format" warning
This may not be very crucial, however I am trying to fix all the warnings g++ is complaining about. In the code below, I am getting "embedded '\0' in format" warning for the snprintf() line. How c...