i have a task to write a function that will get 2 arrays and their size:
int contain(int big[], int size_b, int small[], int size_s)
the program should check if the small array is a sub array of the big array, if true should return the Index number of the first number in the small array, else return -1.
Example: 2 4 61 5 8 5 56 89 3 -2
5 56 89 3 -2
function should return 5.
9 5 12 7 8 -2 4 32 900 13
9 5 12 8 7
function should return -1.
Check the comments to see the explanations
Here is the code without comments