write a program to insert an element into an array
Answer Posted / 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 View All Answers
When do you call copy constructors?
what is scupper?
Name the implicit member functions of a class.
What does new in c++ do?
What is purpose of new operator?
Can we make any program in c++ without using any header file and what is the shortest program in c++.
How do you flush std cout?
What is the use of "new" operator?
How do you find out if a linked-list has an end?
What is protected inheritance?
What is the difference between while and do while loop?
Describe private, protected and public – the differences and give examples.
What is the output of the following program? Why?
Explain storage qualifiers in c++.
What is wrapper class in c++?