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
Tell me can a pure virtual function have an implementation?
What gives the current position of the put pointer?
Which function cannot be overloaded c++?
Is c++ a high level language?
What is the use of setfill in c++?
Why Pointers are not used in C++?
Explain the static storage classes in c++.
Are iterators pointers?
If you don’t declare a return value, what type of return value is assumed?
What is the sequence of destruction of local objects?
What is the difference between public and private data members?
What is difference between rand () and srand ()?
How many standards of c++ are there?
When does the c++ compiler create temporary variables?
What is a loop? What are different types of loops in c++?