D
Dan Pop
In said:My code obfuscator gave me this: ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
char buff[1, 9];
to which gcc retorted:
"ISO C90 forbids variable-size array 'buff'"
I'd imagine an Integer constant is needed here.
What is the "1" in 1,9 doing here anyway? Declaring an array indexed
1..9? Declaring a 2 dimensional array [0..1] [0..8]? I'm not surprised
the compiler complained, so would I!
I'm not too knowledgeable about C so not sure what A,B might mean
except evaluate A then B, or vice versa. But that doesn't explain
meaning of [1,9] in this context.
What part of "My code obfuscator gave me this" was too difficult for you
to understand?
Dan