“Fungsi inline di CPP” Kode Jawaban

fungsi inline di 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.

Fungsi inline di CPP

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

SOURCE - geeksforgeeks
Unsightly Unicorn

Jawaban yang mirip dengan “Fungsi inline di CPP”

Pertanyaan yang mirip dengan “Fungsi inline di CPP”

Lebih banyak jawaban terkait untuk “Fungsi inline di CPP” di C++

Jelajahi jawaban kode populer menurut bahasa

Jelajahi bahasa kode lainnya