Skip to content

Instantly share code, notes, and snippets.

@peczenyj
Created January 11, 2013 18:19
Show Gist options
  • Select an option

  • Save peczenyj/4512800 to your computer and use it in GitHub Desktop.

Select an option

Save peczenyj/4512800 to your computer and use it in GitHub Desktop.
LOL
#include <stdio.h>
int main (int argc, char const *argv[])
{
int n;
printf("%s: %n ANA\n","hello", &n);
printf("%*s BOB\n", n, "");
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment