vsnprintf问题原理??

#include <stdio.h>
int main(int argc, char **argv)
{
  char *p;

  printf("hello\n");
  vsnprintf(p, 20, "%s", "hello");
  return 0;
}

  

 

posted on 2021-01-09 07:49  lydstory  阅读(143)  评论(0)    收藏  举报

导航