Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,845 questions

51,766 answers

573 users

How to insert an element at a specific index in an array with C++

1 Answer

0 votes
#include <iostream>

#define ARRSIZE 5
#define CAPACITY 10

void insertAtIndex(int arr[], int& size, int index, int element, int capacity) {
    if (size >= capacity) {
        std::cout << "Array is full, cannot insert element." << std::endl;
        return;
    }
    if (index < 0 || index > size) {
        std::cout << "Invalid index." << std::endl;
        return;
    }

    // Shift elements to the right
    for (int i = size; i > index; --i) {
        arr[i] = arr[i - 1];
    }

    // Insert the new element
    arr[index] = element;
    size++;
}

int main() {
    int arr[CAPACITY] = {4, 9, 8, 6, 5, 7};
    int size = ARRSIZE;    
    int index = 2;
    int element = 100;

    insertAtIndex(arr, size, index, element, CAPACITY);

    for (int i = 0; i < size; ++i) {
        std::cout << arr[i] << " ";
    }
}

  
  
/*
run:
  
4 9 100 8 6 5 
  
*/

 



answered Feb 20, 2025 by avibootz

Related questions

...