All submissions

Square with Macro and Inline Function

#include <iostream>
using namespace std;

#define SQUARE(x) (x*x)

inline int square(int x) {
   return x * x;
}

int main() {
   int n;
   cin >> n;
   // your code here: declare variables a and b, initialize with n
   // your code here: call macro and inline function using ++a and ++b
   // your code here: print results
   int a = n;
   int b = n;
   int Macros = SQUARE(++a);
   int Inline = square(++b);
   cout<<"Macro Square: "<<Macros<<endl;
   cout<<"Inline Square: "<<Inline<<endl;

   
   return 0;
}
Loading...

Input

5

Expected Output

Macro Square: 49 Inline Square: 36