Are there a set order for which specifiers must follow? e.g
consider:
Code:
extern const volatile static unsigned long int i;
Is the above the same as this:
Code:
long extern const static unsigned volatile int i;