This Question is Answered 

    What Is The Difference Between Java Command Line Arguments And C Command Line Arguments?

    asked 2 years ago

    Date | Rating

    Answers


    Java Commandline arguments are stored in a String array.We can take it by giving the index.

    for example......

    We are giving

    public static void main(String args[])


    Here args is the array.

    By args.length, we will get the length of the array.
    By args[0],args[1],....etc. we can get the elements of the array.

    answered 2 years ago

    New Comment

    1000 words left

      Java command line arguements are passed at RunTime.and is more flexible but C command line arguements are not flexible

      answered 2 years ago

      New Comment

      1000 words left