sprintf函数

字符串格式化命令,主要功能是把格式化的数据写入某个字符串中。sprintf 是个变参函数。

原型
int sprintf( char *buffer, const char *format, [ argument] … );

#include <stdio.h>
#include <stdlib.h>

int main(void)
{
	char* str="cjc";
	char* str1="a good boy!";
	char* s=(char*)malloc(100);

	sprintf(s,"%s is %s\n",str,str1);
	printf("%s",s);

	system("pause");
	return 0;
}


你可能感兴趣的:(sprintf函数)