“Funkcja inline w CPP” Kod odpowiedzi

funkcja wbudowana w 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.

Funkcja inline w CPP

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

SOURCE - geeksforgeeks
Unsightly Unicorn

Odpowiedzi podobne do “Funkcja inline w CPP”

Pytania podobne do “Funkcja inline w CPP”

Więcej pokrewnych odpowiedzi na “Funkcja inline w CPP” w C++

Przeglądaj popularne odpowiedzi na kod według języka

Przeglądaj inne języki kodu