Pre Processing Calculation Example in C Language

Pre Processing Calculation Example in C Language


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





No comments:

Post a Comment