“Inline -Funktion in CPP” Code-Antworten

Inline -Funktion in c

#include <iostream>
using namespace std;


//this function is the fastest bacause it executes at compile time and is really fast , 
//but dont use it for like a big function  
inline int cube(int s)
{
    return s*s*s;
}
int main()
{
    cout << "The cube of 3 is: " << cube(3) << "\n";
    return 0;
} //Output: The cube of 3 is: 27
kirito.

Inline -Funktion in CPP

inline <return_type> <function_name>(<parameters>)
{
    // function code
}

SOURCE - geeksforgeeks
Unsightly Unicorn

Ähnliche Antworten wie “Inline -Funktion in CPP”

Fragen ähnlich wie “Inline -Funktion in CPP”

Weitere verwandte Antworten zu “Inline -Funktion in CPP” auf C++

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen