C Program to search an element in an array using Pointers
A separate function( search_function()) will be created where the array pointer will be declared and the searched element along with the size of an array will be passed. The function will return 1 if any element matches with the searched element otherwise it will return 0. This C program defines a function called search_function that … Read more
