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 / 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



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is copy constructor? Can we make copy constructor private in c++?

1080


Why should we use null or zero in a program?

1030


Difference between inline functions and macros?

1032


Explain friend class?

1124


What do you mean by volatile and mutable keywords used in c++?

984


How many namespaces are there in c++?

1071


How const int *ourpointer differs from int const *ourpointer?

1122


Please explain the reference variable in c++?

1063


Which function cannot be overloaded c++?

1106


What is constant in c++ with example?

1137


What is the full form of stl in c++?

1190


What jobs can you get with a c++ certification?

1050


What are the four partitions in which c++ compiler divides the ram?

1229


Write about an iterator class?

1071


What do you mean by delegate? Can a user retain delegates?

936