Which is best optimized for speed, using 4 separate variables or a 4 dimension Array?
I want to ensure I've used the most optimized code. I'm using gcc on linux. I have 4 values to store. If I use an array, I can for() loop as a convenience and shorter code, but is there added overhead compared to just using separate variables and hav...