Skip to content

Instantly share code, notes, and snippets.

Created March 25, 2015 20:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anonymous/9993ff3b6121fdb04ede to your computer and use it in GitHub Desktop.
Save anonymous/9993ff3b6121fdb04ede to your computer and use it in GitHub Desktop.
{
// pseudocode for testing sprintf change filename
char* outfile = "000.jpg";
printf ("%s", outfile);
int start = 3;
sprintf (outfile, "O%d.JPG", start);
printf ("%s", outfile);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment