哆啦的时光机
例如int a, long b, short c,如何把a,b,c的值按顺序存储到char buffer[50]中。=======sprintf( buffer,"%d %d $d", a, b, c); //依次存储,隔了一个空格printf("%s",buffer);//显示=============或者char* d = (char*)malloc(4); 把a的值存进d中。===============sprintf(d,"%d", a,); //d只有4个字节,只能存3位数字接下来保存只要ofstream fout("out.txt");;fout<< buffer<<d;都行