Is there any preference/convention/rule on order for defining a variable as static
and long/double
or other types?
e.g. is
static double a;
same as
double static a;
is it any different for functions? above, a is variable.
Is there any preference/convention/rule on order for defining a variable as static
and long/double
or other types?
e.g. is
static double a;
same as
double static a;
is it any different for functions? above, a is variable.