write a program to insert an element into an array
Answer Posted / renuka
#include<stdio.h>
#include<conio.h>
void insert(int b[],int n,int pos,int item);
void main()
{
int a[6]={10,20,30,40,50},p,c,item;
printf("enter item and position for insertion");
scanf("%d%d",&item,&p);
printf("array before insertion");
for(c=0;c<=4;c++)
{
printf("%d\n",a[c]);
}
insert(a,6,p,item);
printf("array after insertion");
for(c=0;c<=5;c++)
{
printf("%d\n",a[c]);
}
getch();
}
void(int b[],int n,int pos,int item)
{
int c;
c=n-1;
while(c>pos)
{
b[c]=b[c-1];
c--;
}
b[c]=item;
}
Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is a multimap c++?
Is c++ a float?
How is computer programming useful in real life?
Define a pointer to a data member of the type pointer to pointer?
What things would you remember while making an interface?
Write about the retrieval of n number of objects during the process of delete[]p?
Is dev c++ a good compiler?
What is a class definition?
Is c++ the hardest programming language?
What's c++ used for?
What is data type in c++?
What is setfill c++?
How c functions prevents rework and therefore saves the programers time as wel as length of the code ?
What is the best free c++ compiler for windows?
What is a far pointer? where we use it?