我需要知道如何创建许多空文件,并使用c程序同时打开它们。
FILE *fp[n];
for(i=0;i<n;i++)
{
fp=fopen("filename","mode");
/*Do What you want with these files....*/
fclose(fp);
}