Skip to content

Instantly share code, notes, and snippets.

@syohex
Created August 21, 2012 13:35
Show Gist options
  • Save syohex/3415464 to your computer and use it in GitHub Desktop.
Save syohex/3415464 to your computer and use it in GitHub Desktop.
sprintf test
buf=10000, len=5
#include <stdio.h>
int main (void)
{
char buf[16];
int len;
len = sprintf(buf, "%d", 10000);
printf("buf=%s, len=%d\n", buf, len);
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment