1234567
bool isFound(int *array,int size,int argument)//returns bool { //...Now you can try to do it yourself with dynamic allocation . . . }
12345678
bool isFound(int nums[], int size, int numToFind) { bool found{ false }; // your code return found; }
int nums[]