T
Tony Johansson
Hello!
I know that if you write
const int TAL = 99;
then TAL is implicitly static
Now I wonder if enum is also static implicitly
if I write
enum number {one ,two, three}
is this enum number implicitly static.
//Tony
I know that if you write
const int TAL = 99;
then TAL is implicitly static
Now I wonder if enum is also static implicitly
if I write
enum number {one ,two, three}
is this enum number implicitly static.
//Tony