public class mcq {
public static void main(String[] args) {
int len= args.length;
System.out.println("Length :"+len);
}
}
In vs code it gives length : 0
In Intellij it gives Length :2
Why it happens explain in detail solution
New contributor
Smitanshu Ukey is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.
1