Take an array of names as input from the user and print them on the screen.
import java.util.Scanner;
/**
* Link4
*/
public class Link {
public static void main(String[] args) {
Scanner sc = new Scanner(System.in);
int size = sc.nextInt();
String names[] = new String[size];
//for inpu...
vaishnavi1511.hashnode.dev1 min read