Skip to content

Instantly share code, notes, and snippets.

@fbarrios
Created April 29, 2017 12:12
Show Gist options
  • Save fbarrios/efa1ab37c7d27b5be92e70181bf0b253 to your computer and use it in GitHub Desktop.
Save fbarrios/efa1ab37c7d27b5be92e70181bf0b253 to your computer and use it in GitHub Desktop.
Test sprintf
// test.c
#include<stdio.h>
int main()
{
size_t num = 100;
char cadena[10];
sprintf(cadena, "%zd", num);
printf("%s\n", cadena);
return 0;
}
// ejecución
fede@debian:~/Downloads/test_sprintf$ gcc -g -std=c99 -Wall -Wconversion -Wno-sign-conversion -Werror -o test test.c
fede@debian:~/Downloads/test_sprintf$ ./test
100
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment