I have a question on my handout for class that says:
Justify / refute the statement that theese declarations are equivalent.
double speed[1] ;
double speed;
My guess was they are the same, since, even though speed[1] is an array, it is the same size of just speed.
Am I wrong?