Saturday, 10 June 2017

Java Tutorial: Command line arguments in java | Java command line arguments ~ foundjava


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 
Echo.java
public class Echo
{
    public static void main(String[] args)
    {
        for (String s : args)
        {
            System.out.println(s);
        }
    }
}
Output
Welcome
to
India

Command line
Java Tutorial: Command line arguments in java | Java command line arguments 












Click the below link to download the code:

CLICK HERE

No comments:

Post a Comment