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 7/9*9 equal ? a) 1 b) 0.08642 c) 0
Explain stack & heap objects?
What is a stack? How it can be implemented?
What are libraries in c++?
How to access a variable of the structure?
By using c++ with an example describe linked list?
Is c++ a high level language?
Which is better c++ or java?
What operators can you overload in c++?
How can you say that a template is better than a base class?
How can you differentiate between inheritance and implementation in c++?
What do you mean by inheritance in c++?
Which coding certification is best?
what are the decision making statements in C++? Explain if statement with an example?
What is the identity function in c++? How is it useful?