Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Aprenda Declaration vs Definition | Prototype | Functions
C++ Intermediate | Mobile-Friendly

bookDeclaration vs Definition | Prototype

Functions in C++ consist of 2 elements:

  • Declaration: the function's name with parameters (if they exist).
  • Definition: the function’s body.
void myFunc() { // Declaration
    // Definition
}

The function declaration is also called the function’s prototype. The code body (the definition) can be defined separately. It’s a good rule to write before the main function prototypes of other functions to understand how many functions we have and which arguments it passes. After the main function, you should specify the function’s definitions:

// Function prototype
void myFunc(string name);

int main() {
    myFunc("Sheldon");
    return 0;
}
// Function definition
void myFunc(string name) {
    cout << "Hi " << name;
}

It doesn’t affect your code if you specify prototypes or not. We won’t do this in further chapters since our code is still pretty simple and doesn’t need strict structurization.

question mark

Choose correct statements:

Select the correct answer

Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 4. Capítulo 10

Pergunte à IA

expand

Pergunte à IA

ChatGPT

Pergunte o que quiser ou experimente uma das perguntas sugeridas para iniciar nosso bate-papo

Suggested prompts:

Pergunte-me perguntas sobre este assunto

Resumir este capítulo

Mostrar exemplos do mundo real

Awesome!

Completion rate improved to 2.94

bookDeclaration vs Definition | Prototype

Deslize para mostrar o menu

Functions in C++ consist of 2 elements:

  • Declaration: the function's name with parameters (if they exist).
  • Definition: the function’s body.
void myFunc() { // Declaration
    // Definition
}

The function declaration is also called the function’s prototype. The code body (the definition) can be defined separately. It’s a good rule to write before the main function prototypes of other functions to understand how many functions we have and which arguments it passes. After the main function, you should specify the function’s definitions:

// Function prototype
void myFunc(string name);

int main() {
    myFunc("Sheldon");
    return 0;
}
// Function definition
void myFunc(string name) {
    cout << "Hi " << name;
}

It doesn’t affect your code if you specify prototypes or not. We won’t do this in further chapters since our code is still pretty simple and doesn’t need strict structurization.

question mark

Choose correct statements:

Select the correct answer

Tudo estava claro?

Como podemos melhorá-lo?

Obrigado pelo seu feedback!

Seção 4. Capítulo 10
some-alt