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 is anonymous object in c++?
Should I learn c or c++ or c#?
When do we run a shell in the unix system? How will you tell which shell you are running?
How the programmer of a class should decide whether to declare member function or a friend function?
What is oop in c++?
What you know about structures in C++?
Is it legal in c++ to overload operator++ so that it decrements a value in your class?
Why Pointers are not used in C++?
What is #include cmath?
What are the 3 levels of programming languages?
which of the following is not an secondary constant a) array b) real c) union
Should I learn c or c++ first?
What does the nocreate and noreplace flag ensure when they are used for opening a file?
What does the linker do?
Explain pass by value and pass by reference.