#include <stdio.h> #define MAX_SIZE 100 void main() { int arr[MAX_SIZE]; int size, i, toSearch, found; printf("Enter size of array: "); scanf("%d", &size); printf("Enter elements in array: "); for(i=0; i<size; i++) { ...
himanshu09.hashnode.dev1 min readNo responses yet.