// w3.cpp : 定义控制台应用程序的入口点。
//

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

int main(int argc, char* argv[])
{
	srand((unsigned)time(NULL));
	char b[]={"ACGT"};
	FILE* pfile;
	char buf[2]={'\0'};
    pfile=fopen("d:\\123.txt","w+");
	for(int i=0;i<100000;i++)
	{
		buf[0]=b[rand()%4];
		buf[1]='\0';
		fwrite(buf,sizeof(char),1,pfile);
	}
	fclose(pfile);
	return 0;
}