源代码如下
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[]) {
char str[]="welcome to my home";
int count=0;
if(fp!=NULL)
{
count=fputs(str,fp)
printf(%d\n",count); //按理说fputs()函数的返回值是字符串的长度 ,可我输出的结果却是0 我代码有问题么? 我编译器用的是DEV C++
}
fclose(fp);
return 0;
}
|
|