为什么我的“C”代码不是在Linux(编译器ggdb3,C99)中编译的,而是在Visual Studio中很好的工作?
以下是错误消息:
20:1:错误:控件可能到达非空函数的结尾
[-Werror,-Wreturn类型]
}

#include <stdio.h>
//  Function to determine if one character string exists inside another string.
int findString(char source[], char searching[])
{
    int i = 0, j = 0;

    for (; source[i] != '\0'; i++) {
        if (source[i] == searching[j])
            if (source[i + 1] == searching[j + 1] &&
                source[i + 2] == searching[j + 2])
                return i;
            else
                return -1;
    }

}

int main(void)
{
    int index = findString("a chatterbox", "hat");

    if (index == -1)
        printf("No match are founded\n");
    else
        printf("Match are founded starting index is %i\n", index);

    return 0;
}

我试过在函数中加入edd,但没用
if (source[0] == '\0')
        return -1;

最佳答案

第一个C不是Python,因此需要正确使用括号(而不仅仅是缩进)。
也就是说,问题在于findString()函数。一旦您正确地放置了一些括号,您就会发现函数没有一个if (source[i] != searching[j])语句,而它应该返回一个return

 if (source[i] == searching[j])
 {
     ...
 }
 // what if source[i] != searching[j]
 // you do not have any return statement for a function returning int

无法从非void函数返回会导致未定义的行为。
引用C11(rubenvb)
6.9.1功能定义
12如果到达终止函数的},并且调用方使用函数调用的值,则行为未定义。
它是用C++编写的more clear
[…]从函数结尾流出等同于没有值的返回;这会导致返回值的函数中出现未定义的行为。[…]

10-05 23:47
查看更多