Code Snippets C

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