void printMAS (int A[])
{
printf ("%d\n", A[1] );//не суть
}
int main (void)
{
int MAS[] = {0,1,2,3,4};
printMAS (MAS);//The name of the array evaluates to the address of the first element of the array.
printMAS (&MAS[0]);//не будет ошибкой!
printMAS (&MAS);//будет ошибкой! Почему?
}