write a program to insert an element into an array
Answer Posted /
import java.util.*;
import java.io.*;
public class project
{
public static void main (String[]args) throws
IOException
{
BufferedReader dataIn = new BufferedReader
(new InputStreamReader(System.in));
System.out.println
("******************************");
System.out.println("
+++++++++++++++ ");
System.out.println(" [1]
Insert ");
System.out.println(" [2]
Delete ");
System.out.println(" [3]
Search ");
System.out.println(" [4]
Sort ");
System.out.println("
+++++++++++++++ ");
System.out.println
("******************************");
}
}
| Is This Answer Correct ? | 20 Yes | 81 No |
Post New Answer View All Answers
Why do we need runtime polymorphism in c++?
What is a memory leak c++?
Is c++ the hardest programming language?
Why do we need c++?
What is the type of 'this' pointer? When does it get created?
Mention the ways in which parameterized can be invoked. Give an example of each.
What is the purpose of template?
What parameter does the constructor to an ofstream object take?
Is c# written in c++?
What is general format for a prototype?
Can you explicitly call a destructor on a local variable?
On throwing an exception by the animal constructor in p = new animalq, can memory leak occur?
Describe delete operator?
Does c++ have a hash table?
What does flush do?