+ 1
what does it mean 'string[]args'in java
help me please
5 Answers
+ 12
An array of strings called "args". Stores execution values, you can pass values in this when running your program but not here in SoloLearnâŠâŠ
+ 4
when you want execute program from console and when you want insert some arguments.
+ 1
it is necessary to pass parameters to the main program.
0
It takes the every instruction of main program as an argument....
0
string args[] is an an array of strings that stores the name of our program plus other values that we pass when we execute our program