I know that in C, arrays are not supposed to be dynamically sized.
With that in mind, would the following code be allowed? (Trying to declare an array of chars the same length as a double.)
char bytes[sizeof(double)];
My guess is that sizeof operates on its argument during program execution and so this wouldn't be allowed, but I'm not sure.
Also, would there be a difference if this were C++ instead of C?