当前位置: 代码迷 >> C语言 >> 求助 fgets在什么函数里
  详细解决方案

求助 fgets在什么函数里

热度:306   发布时间:2007-03-26 21:01:32.0
求助 fgets在什么函数里
如题呀
搜索更多相关的解决方案: fgets  

----------------解决方案--------------------------------------------------------
#include<stdio.h>
----------------解决方案--------------------------------------------------------
File Edit Run Compile Project Options Debug Break/watch
ㄖㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔ Edit ㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄔㄙ
│ Line 16 Col 1 Insert Indent Tab Fill Unindent * C:7.C │
│ │
│ scanf("%d %d%c",&m,&n,t); │
│ for(i=0;i<m;i++) │
│ for(j=0;j<n;j++) │
│ scanf(" %c",&a[i][j]); │
│ scanf("%d",&k); │
│ fgets(t); │
│} │
│ │
可是运行这段程序的时候他说找不到fgets
----------------解决方案--------------------------------------------------------

把全部程序帖上来,我看看.


----------------解决方案--------------------------------------------------------
以后要是有不知道函数在哪,可以看帮助的.TC好像没没,BC有.一定要学会用帮助啊

----------------解决方案--------------------------------------------------------
函数名: fgets
功 能: 从流中读取一字符串
用 法: char *fgets(char *string, int n, FILE *stream);
程序例:
#include <string.h>
#include <stdio.h>
int main(void)
{
FILE *stream;
char string[] = "This is a test";
char msg[20];
/* open a file for update */
stream = fopen("DUMMY.FIL", "w+");
/* write a string into the file */
fwrite(string, strlen(string), 1, stream);
/* seek to the start of the file */
fseek(stream, 0, SEEK_SET);
/* read a string from the file */
fgets(msg, strlen(string)+1, stream);
/* display the string */
printf("%s", msg);
fclose(stream);
return 0;
}

----------------解决方案--------------------------------------------------------
多谢了
----------------解决方案--------------------------------------------------------