100_Program_List 1 to 27
100_Program_List 1 to 27
23 WAP to enter an element at specific position into array. (Do not take a new 9
array)
24 WAP to delete an element from array specified by user. if element is not 9
found print a message “Element is not found” (do not take a new array).
25 WAP to check weather number is present in array or not (using recursion 9
only) and the function’s syntax is given below
Int isInArray(int a[],int m);
Where int a[] is Array of integer and m is element to be searched.
26 WAP to convert a Binary to Decimal 9
27 WAP to sort an Array using Counting sort. 9