当前位置: 代码迷 >> C语言 >> [求助]为什么记事本中没数据?
  详细解决方案

[求助]为什么记事本中没数据?

热度:248   发布时间:2007-05-15 19:30:42.0
[求助]为什么记事本中没数据?

#include<stdio.h>
int a,b,c;
main()
{
a=1;
b=2;
c=a+b;
write();
printf("%d\n",c);

}
write()
{
FILE *fp;
fp=fopen("22.c","w");
fprintf(fp,"%d",c);
fclose(fp);
}


----------------解决方案--------------------------------------------------------
  相关解决方案