I'm studying a function to search for a number where that goes as the following..
int sequential_search (int num, int a[], int size);
And in main , a is defined as the following.
int *a;
a = new int[size];
So I was wondering if its the same thing.. Thanks in advance