Computer Science, asked by khansayan2005, 2 months ago

The command-line argument accepts the data value as an _________
of Strings.

Answers

Answered by JasleenMann
2

To run this java program, you must pass at least one argument from the command prompt.

class CommandLineExample{

public static void main(String args[]){

System.out.println("Your first argument is: "+args[0]);

}

}

Similar questions