Hi I'm trying to pass an array into a function without using pointers..
My code is as follows
void Select_Game_Mode(void) ;
void Single_Player_Mode(void) ;
int Single_Player_Play(int bucket[], int arrSize) ;
int main()
{
srand(time(0)) ;
Select_Game_Mode() ;
return 0;
}
//...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.