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
What does it mean to declare a member variable as static?
What is linked list in c++?
What are namespaces in c++?
What is the difference between interpreters and compilers?
Explain friend class?
Why is c++ called oops?
what is c++
Which coding certification is best?
Write a program to find the Fibonacci series recursively.
What are c++ templates used for?
What is the most useful programming language?
What is extern c++?
How can I learn c++ easily?
What are the 4 types of library?
What is increment operator in c++?