I have uploaded all my projects in C, C++, HTML, CSS, Java, and Android Development Projects in a topic-wise sequential manner.
Further posts are uploaded on https://mohitx001.blogspot.com/
#include <stdio.h> //Insertion in an array void insertion_1 ( int arr [] , int size , int element , int index ) { //Insertion for unsorted array arr [ size ] = arr [ index ]; arr [ index ] = element ; } void insertion_2 ( int arr [] , int size , int element , int index ) { //Insertion for sorted array for ( int i = size - 1 ; i >= index ; i -- ) { arr [ size ] = arr [ size - 1 ]; size -= 1 ; } arr [...
Comments
Post a Comment