Macro Preprocessor C

#define CUBE(x)  x*x*x 
#include 
main () {
    
  int k = 5;
  int j = 0;
  j = CUBE(k); //  j = k*k*k
  printf ("Cube value of j is %d\n", j);
}