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

What are the various oops concepts in c++?

1046


Explain Memory Allocation in C/C++ ?

1074


What is meant by the term name mangling in c++?

962


How can I disable the "echo" feature?

1176


What are the general quetions are in DEna bank manager IT/System interviews?

2022


What is meant by const_cast?

1130


What are the advantages of c++ over c?

1078


What is void pointer in c++ with example?

1100


What is virtual destructor ans explain its use?

1131


What are special characters c++?

1031


What is a type library?

1111


Which software is best for c++ programming?

1051


Why namespace is used in c++?

1071


Is c++ a float?

1067


Explain the difference between new() and malloc() in c++?

1132