So, I'm trying to create an array of static ints (you know, where the ints themselves are static):
static int bob[37];
The above seems to cause the pointer to the first element to be static but the ints themselves not to be. (perhaps not quite properly said there but fairly close... close enough that you likely understand what I mean)
How would one do this? Is it even possible in ISO/ANSI C?
static int bob[37];
The above seems to cause the pointer to the first element to be static but the ints themselves not to be. (perhaps not quite properly said there but fairly close... close enough that you likely understand what I mean)
How would one do this? Is it even possible in ISO/ANSI C?