sprintf 是c++中的一种函数,他也是打印,只不过你可以理解为它把打印的内容打印到了数组中而不是屏幕上,比如:
#include<bits/stdc++.h>
#define ff(i, x, y) for(int i = x;i <= y;i++)
using namespace std;
int main() {
char s[40];
sprintf(s, "%d%s", 123, "tet");
printf("%s", s);
return 0;
}
输出结果是123tet