Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


write a program to insert an element into an array

Answers were Sorted based on User's Feedback



write a program to insert an element into an array..

Answer / dhaivat

void arrayins(int arr[], int& n, int pos, int item)
{
if (n==MAX) //Size of array is MAX
cout<<"Overflow\n";
else
{
for (int x=n; x>=pos; x--)
arr[x+1]=arr[x];
arr[pos]=item;
n++;
cout<<item<<" inserted in the array\n";
}

Is This Answer Correct ?    17 Yes 47 No

write a program to insert an element into an array..

Answer / gokul balaji

#include<iostream.h>
#include<conio.h>
void main()
{
int a[5],i;
for(i=0;i<5;i++)
{
cin>>a[i];
}
for(i=0;i<5;i++)
{
cout<<a[i];
}
}

Is This Answer Correct ?    15 Yes 66 No

write a program to insert an element into an array..

Answer /

import java.util.*;
import java.io.*;

public class project
{
public static void main (String[]args) throws
IOException
{
BufferedReader dataIn = new BufferedReader
(new InputStreamReader(System.in));

System.out.println
("******************************");
System.out.println("
+++++++++++++++ ");
System.out.println(" [1]
Insert ");
System.out.println(" [2]
Delete ");
System.out.println(" [3]
Search ");
System.out.println(" [4]
Sort ");
System.out.println("
+++++++++++++++ ");
System.out.println
("******************************");
}
}

Is This Answer Correct ?    20 Yes 81 No

write a program to insert an element into an array..

Answer / chandrasekhar

#include<iostream.h>
#include<conio.h>
void main()
{
int a[5];
int i;
clrscr();
cout<<"enter the elements into an array";
for(i=0;i<5;i++)
{
cin>>a[i];
}
getch();
}

Is This Answer Correct ?    103 Yes 171 No

write a program to insert an element into an array..

Answer / namitha

#include<iostream.h>
main()
{
int a[20];
cout<<"enter an element into the array:";
cin>>a[0];
}

Is This Answer Correct ?    13 Yes 89 No

write a program to insert an element into an array..

Answer / vineeshtkm

main()
{
int a[10],item;
cout<<"Enter Item:";
cin>>item;
a[0]=item;
}

Is This Answer Correct ?    74 Yes 189 No

Post New Answer

More C++ General Interview Questions

What is the difference between Char a[ ]=”string” and char *a=”String”

11 Answers   Adobe,


Explain how would you handle a situation where you cannot call the destructor of a local explicitly?

0 Answers  


How can you quickly find the number of elements stored in a a) static array b) dynamic array ?

5 Answers   Lucent,


Why do we need function?

0 Answers  


What is the difference between method overloading and method overriding in c++?

0 Answers  


Describe friend function & its advantages.

0 Answers   TCS,


Who calls main function?

0 Answers  


Why are pointers used?

0 Answers  


Which is best c++ or java?

0 Answers  


What is #include iomanip?

0 Answers  


How the V-Table mechanism works?

6 Answers   HP,


When does a name clash occur?

1 Answers  


Categories