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 …
Read moreC Program to search an element in an array using Pointers