gpt4 book ai didi

c - 将字符串和字符传递给函数

转载 作者:太空宇宙 更新时间:2023-11-04 06:34:26 24 4
gpt4 key购买 nike

我写的这段代码应该读取一个句子和一个字符,检查该字符在该句子中的出现。当我在 main 中编写代码时它起作用,但是当我尝试使用函数时它不起作用。我遇到的问题是向函数参数声明一个字符串和一个变量 char。怎么了?

#include<stdio.h>
#include<string.h>
int occ(char*,char);
int main ()
{
char c,s[50];
printf("enter a sentece:\n");gets(s);
printf("enter a letter: ");scanf("%c",&c);
printf("'%c' is repeated %d times in your sentence.\n",c,occ(s,c));
}
int occ(s,c)
{
int i=0,j=0;
while(s[i]!='\0')
{
if(s[i]==c)j++;
i++;
}
return j;
}

最佳答案

请注意,在许多其他编译警告中,您应该收到关于 occ 声明与其定义之间原型(prototype)不匹配的警告。

当你写的时候:

int occ(s,c)
{

您正在使用准标准或 K&R 样式函数,并且参数的默认类型(因为您没有指定任何类型)是 intchar 参数没问题; char * 参数不正确。

所以,除此之外,你应该写:

int occ(char *s, char c)
{

同意原型(prototype)。

当我编译你的代码时,出现编译错误:

$ gcc -O3 -g -std=c99 -Wall -Wextra -Wmissing-prototypes -Wstrict-prototypes -Wold-style-definition -c wn.c
wn.c:4:5: warning: function declaration isn’t a prototype [-Wstrict-prototypes]
wn.c: In function ‘main’:
wn.c:4:5: warning: old-style function definition [-Wold-style-definition]
wn.c: In function ‘occ’:
wn.c:11:5: warning: old-style function definition [-Wold-style-definition]
wn.c:11:5: warning: type of ‘s’ defaults to ‘int’ [enabled by default]
wn.c:11:5: warning: type of ‘c’ defaults to ‘int’ [enabled by default]
wn.c:11:5: error: argument ‘s’ doesn’t match prototype
wn.c:3:5: error: prototype declaration
wn.c:11:5: error: argument ‘c’ doesn’t match prototype
wn.c:3:5: error: prototype declaration
wn.c:14:12: error: subscripted value is neither array nor pointer nor vector
wn.c:16:13: error: subscripted value is neither array nor pointer nor vector
wn.c:11:5: warning: parameter ‘s’ set but not used [-Wunused-but-set-parameter]

注意:修复代码并不需要太多——它可以干净地编译。但是,它确实使用 fgets() 而不是 gets()。你应该忘记 gets() 现在存在,你的老师应该因为提及它的存在而被解雇。

运行示例:

$ ./wn
enter a sentence: amanaplanacanalpanama
enter a letter: a
'a' is repeated 10 times in your sentence.
$

代码:

#include <stdio.h>

int occ(char*, char);

int main(void)
{
char c, s[50];
printf("enter a sentence: ");
fgets(s, sizeof(s), stdin);
printf("enter a letter: ");
scanf("%c", &c);
printf("'%c' is repeated %d times in your sentence.\n", c, occ(s, c));
return 0;
}

int occ(char *s, char c)
{
int i=0, j=0;
while (s[i]!='\0')
{
if (s[i]==c)
j++;
i++;
}
return j;
}

代码应该检查 fgets()scanf() 是否成功;我得偷懒了。

关于c - 将字符串和字符传递给函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16631015/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com