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

Answer Posted / saranya

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

Is This Answer Correct ?    21 Yes 50 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

When do we run a shell in the unix system? How will you tell which shell you are running?

974


What is c++ and its uses?

1223


What is a hashmap c++?

1114


Is java made in c++?

1057


What is difference between class and function?

1080


What is object in c++ wikipedia?

995


What is the size of a vector?

1133


What are manipulators in c++ with example?

1058


Explain operator overloading.

1055


What is the basic structure of a c++ program?

1139


Why Pointers are not used in C++?

1071


What are the vectors in c++?

1027


what are function pointers?

1053


Explain dangling pointer.

1120


In c++, what is the difference between method overloading and method overriding?

1136