fopen函数的一些问题,r是以只读方式!怎么样能让文件名出现在桌面?就像我们平常打开文件一样?
#include "stdio.h"#include<conio.h>
#include<stdlib.h>
int main(void)
{
char c[5000];
int i=0,num=0,cha=0,empty=0;
FILE *p;
if((p=fopen("d:/program/data.txt","r"))==NULL)
{
printf("错误!\n");
exit(0);
}
c[0]=fgetc(p);
while(c[i]!=EOF)
{
i++;
c[i]=fgetc(p);
}
fclose(p);
return 0;
}