I came across this code, where a macro called "small"
was defined and this macro has been used between the data type 'int'
and the variable Number
. I notice such a usage of words like "far" etc when declaring some pointers. What is the use of such a macro(keywords)? The same program works without the macro called "small".
#include <stdio.h>
#define small
int main(void) {
int small* Number ;
int x;
x=5;
Number = &x;
printf("The Number stored by x is : %d\n",*Number);
return 0;
}