编译我的c文件时出现此错误 我似乎无法让我的类型正确的程序,我将如何解决这个问题 我把我的.h文件和我的.c文件放在一起
错误
example4.c:35: error: conflicting types for ‘h’
example4.h:8: error: previous declaration of ‘h’ was here
example4.h代码
typedef struct{
int x;
char s[10];
}Record;
void f(Record *r);
void g(Record r);
void h(const Record r);
example4.c代码
#include <stdio.h>
#include <string.h>
#include "example4.h"
int main()
{
Record value , *ptr;
ptr = &value;
value.x = 1;
strcpy(value.s, "XYZ");
f(ptr);
printf("\nValue of x %d", ptr -> x);
printf("\nValue of s %s", ptr->s);
return 0;
}
void f(Record *r)
{
r->x *= 10;
(*r).s[0] = 'A';
}
void g(Record r)
{
r.x *= 100;
r.s[0] = 'B';
}
void h(Record *r)
{
r->x *= 1000;
r->s[0] = 'C';
}
答案 0 :(得分:3)
您的标头文件声明void h(const Record r);
,而您的源文件声明void h(Record *r)
您修复了源文件,但在尝试将answer I gave you应用于this question时忘了修改标题。