#include <iostream>
#include <fstream>
using namespace std ;
void main ()
{
char * p= "SysProgram" ;
ofstream tfile ("C: // 1.txt" );
tfile . write (p, strlen (p)); //写入内容
}
#include <fstream>
using namespace std ;
void main ()
{
char * p= "SysProgram" ;
ofstream tfile ("C: // 1.txt" );
tfile . write (p, strlen (p)); //写入内容
}