在C中的以下陈述中哪一个更好用?
static const int var = 5;
要么
#define var 5
enum { var = 5 };
c constants
c ×1
constants ×1