gpt4 book ai didi

c - 'C' 二维数组的段错误

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

谁能解释一下为什么这段代码不起作用?

#include <stdio.h>
#include <stdlib.h>

void findAndPrint(char *arr[], int year, int month, int day);

int main()
{
char *dayTab[] = {
{31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
{31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}
};
findAndPrint(dayTab, 3, 3, 3);
getchar();
return 0;
}

void findAndPrint(char *arr[], int year, int month, int day ){
int d = 0;
if(month > 12 || month < 1 || day > 31 || day<1)
return;
int leap = ((year%4==0 && year%100!=0) || year%400 == 0)?1:0;
int i;
for(i=0; i<month-1; i++){
d += arr[leap][i];
}
d+= day;
printf("Day = %d", d);
}

IDE(Code::Blocks) 写入“程序接收到信号 SIGSEGV。段错误。”

最佳答案

首先,您需要一个二维字符数组,不是一个指向字符的指针数组。

char dayTab[][12] = {
{31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31},
{31, 29, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}
};

然后您必须更改函数以接受该类型。

void findAndPrint(char arr[][12], int year, int month, int day ) ;

其余的看起来还不错。

尝试使用参数:

findAndPrint(dayTab, 2014, 10, 12);

给我们一天:285

这是正确的,耶!

关于c - 'C' 二维数组的段错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26327834/

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