Hatim
0
Q:

inline function in c++

#include <iostream>
 
using namespace std;

inline int Max(int x, int y) {
   return (x > y)? x : y;
}

// Main function for the program
int main() {
   cout << "Max (20,10): " << Max(20,10) << endl;
   cout << "Max (0,200): " << Max(0,200) << endl;
   cout << "Max (100,1010): " << Max(100,1010) << endl;
   
   return 0;
}
3
class S 
{ 
public: 
    int square(int s); // declare the function 
}; 
  
inline int S::square(int s) // use inline prefix 
{ 
  
}
0
Inline Member Functions (C++)
A member function that is both declared and defined in the class member list is called an inline member function. Member functions containing a few lines of code are usually declared inline.
0

New to Communities?

Join the community