Click here to watch in Youtube :
https://www.youtube.com/watch?v=2WdYtlIHbU4&list=UUhwKlOVR041tngjerWxVccw
Click the below Image to Enlarge
![]() |
Java Tutorial: Command line arguments in java | Java command line arguments |
public class Echo
{
public static void main(String[] args)
{
for (String s : args)
{
System.out.println(s);
}
}
}
OutputWelcome
to
India
Command line![]() |
Java Tutorial: Command line arguments in java | Java command line arguments |
No comments:
Post a Comment