- 论坛徽章:
- 0
|
像楼上的程序运行 strcpy函数出现错误了~~
我把程序改成如下:
1 #include<stdio.h>
2 #include<stdlib.h>
3 #include<string.h>
4 #include<errno.h>
5
6 #define SIZE 128 /*字符串最大长度*/
7 #define COUNT 50 /*最大的字符串个数*/
8
9 int main(void)
10 {
11 int i,j=0,k=0;
12 char str[50]="/home/cyg/test/client";
13 char cTemp[SIZE];
14 char *cpString[COUNT]={NULL};
15 FILE *fp;
16 if((fp=fopen("input","a+"))==NULL)
17 {
18 perror("fopen error!");
19 exit(1);
20 }
21 while(!feof(fp)) ///////////////////////////////////////////新加的while循环
22 {
23 for(i=0;i<COUNT;i++)
24 {
25 if(fgets(cTemp,SIZE,fp)==NULL)
26 {
27 perror("fgets error!");
28 printf("%d\n",errno);
29 exit(1);
30 }
31 cpString[i]=(char*)malloc(strlen(cTemp)+1); //所有字符串指针存放在cpString里面
32 strcpy(cpString[i],cTemp);
33 //printf("%s",cpString[i]);
34 }
35 k=i+1; ///////////////////////////////////得出文件中几行字符串,也就是字符数组中有几个字符串
36
37 }
38 for(i=0;i<k;i++) ///////////////////////////////////// 在这个数组中查找字符串
39 {
40 if(cpString[i]!=NULL) ///////////////////////////////采用楼上的,不过觉得作用不大
41 {
42 if(strcmp(cpString[i],str)==0)
43 {
44 j++;
45 break;
46 }
47 }
48 }
49 //printf("%d\n",j);
50 if(j!=1)
51 {
52 fputs(str,fp);
53 j--;
54 }
55 fclose(fp);
56 for(i=0;i<COUNT;i++)
57 {
58 free(cpString[i]);
59 }
60 return 0;
61 }
可是程序运行 有莫名的错误
cyg@ubuntu:~$ ./d
fgets error!: Success
29
我查了错误代码 是#define ESPIPE 29 /* Illegal seek */
不知道又出在哪里了 :em16: :em16: :em16: :em16: :em16: :em16:
[ 本帖最后由 langue 于 2009-5-22 19:03 编辑 ] |
|