In C. An array is automatically converted to a pointer to its first element Happens in:

Example

int x[5];
sizeof(x) // 5 * 4
 
myfunc(int x[]){
	sizeof(x) // 4
}