bool linearsearch (int *arr, int size, int key) {
if (size == 0)
return false;
if(arr[0]==key)
return true;
else
return linearsearch(arr+1, size-1, key);
}
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter