Java program to give command line arguments on October 06, 2021 Get link Facebook X Pinterest Email Other Apps class Command{ public static void main(String ar[]) { int a; for(a=0;a<ar.length;a++) { System.out.println(ar[a]); } }}OUTPUT Comments
Comments
Post a Comment