Home > Backend Development > C++ > body text

Solve the problem of 'error: 'function' does not have a return type' in C++ code

WBOY
Release: 2023-08-26 13:24:21
Original
1266 people have browsed it

解决C++代码中出现的“error: \'function\' does not have a return type”问题

Solve the "error: 'function' does not have a return type" problem that appears in C code

When writing code in C, you often encounter various types of errors. One of the common errors is "error: 'function' does not have a return type". This error is usually caused by forgetting to specify the return type when declaring or defining a function. In this article, we will discuss this problem and give solutions.

First, let us look at a sample code:

#include <iostream>

function sayHello() {
    std::cout << "Hello, world!" << std::endl;
}

int main() {
    sayHello();
    return 0;
}
Copy after login

In the above code, we define a function named "sayHello" to output "Hello, world!". However, when we try to compile this code, we will encounter the following error message:

error: 'function' does not have a return type
Copy after login

This error is caused by not specifying the return type when the function is declared or defined.

To solve this problem, we need to explicitly specify the return type when the function is declared or defined. In the sample code above, we forgot to specify the return type. To fix this problem, we can change the function declaration to:

void sayHello();
Copy after login

In this fixed code, we use the "void" keyword to specify the return type of the function. In C, "void" means a function that has no return value.

Next, we also need to specify the return type when defining the function. In the example code above, our definition is missing the return type. To fix this problem, we need to change the function definition to:

void sayHello() {
    std::cout << "Hello, world!" << std::endl;
}
Copy after login

In this fixed code, we use the same "void" keyword as the function declaration to specify the return type of the function.

Now, we try to compile this repaired code again:

$ g++ -o example example.cpp
Copy after login

This time, we will no longer encounter the error message "error: 'function' does not have a return type" .

Summary:
In C, we must explicitly specify the return type in function declarations and definitions. When we encounter the "error: 'function' does not have a return type" error, we should check the function declarations and definitions in the code and ensure that they specify the return type correctly.

I hope this article can help you solve the "error: 'function' does not have a return type" problem in C code. Happy programming!

The above is the detailed content of Solve the problem of 'error: 'function' does not have a return type' in C++ code. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!