Bootstrap

C++中sprintf()的用法

sprintf()函数相当于带格式的转换函数

sprintf(dst,'格式',src),意为将src以指定格式输入到dst中,跟printf类似,只不过printf是直接输入到命令行窗口中

今天笔试的时候有这样一个代码,要求改错:

  char s[]={'1','2','3'};    
  int len=strlen(s)+1;
  char *p=(char *)malloc(sizeof(char*)*len);
  sprintf(p,"%s",s);
 

其实代码有错,因为这里的s只占了三个字节,没有必要令len+1,可以将s改成字符串的形式

char s[]="123";    

 
  

;