Line 2: Where is array1.h?
Line 8: main() must be type int.
Line 21,42: Use an int, not a float for an index. floats are approximations.
Lines 23-24,45-46,60,75,82,95,107: Subscripts must be an integral type.
Line 30: Duplicate definition of numbers, sum and mean.
Line 45-46: num is undefined. Did you mean numbers?
Line 54-55: Duplicate definitions of i and numbers.
Line 64: You can't return a value in a void function. If you fix the type of main(), this line is correct.
Line 65: Missing a } to terminate main.
Line 89: Extraneous =.
Line 90: number is undefined.
Line 62: No function prototype for calculateSD().
Line 101: Extraneous ;
PLEASE ALWAYS USE CODE TAGS (the <> formatting button) when posting code.
It makes it easier to read your code and also easier to respond to your post.
http://www.cplusplus.com/articles/jEywvCM9/
Hint: You can edit your post, highlight your code and press the <> formatting button.