but it can the other way around
Code:
static_Array= dynamic_Array;

dynamic_Array = static_Array;


the second statement works and i'm able to print out both arrays with equal values

but with the first

[cod
e]
static_Array = dynamic_Array;I get
incompatible types in assignment of 'int*' to 'int [7]' is the error I get
[/code]