vsnprintf问题原理??
#include <stdio.h>
int main(int argc, char **argv)
{
char *p;
printf("hello\n");
vsnprintf(p, 20, "%s", "hello");
return 0;
}

知识就是希望
#include <stdio.h>
int main(int argc, char **argv)
{
char *p;
printf("hello\n");
vsnprintf(p, 20, "%s", "hello");
return 0;
}
