Does
void function(int *parameter){}
do the same thing as
void function (int parameter[]){}
? And could the first one also be used to pass in variable pointers not arrays? Kind of confused.
Does
void function(int *parameter){}
do the same thing as
void function (int parameter[]){}
? And could the first one also be used to pass in variable pointers not arrays? Kind of confused.