Size of variable - #define macros If you create variable using #define , size of that variable is 2 bytes.#include< stdio.h >#define a 1main(){printf("%d",sizeof(a));return 0;} Share this Share on FacebookTweet on TwitterPlus on Google+ Related Posts13351523Size of variable - #define14