WhileExample Program Get link Facebook X Pinterest Email Other Apps - July 09, 2019 public class WhileExample { public static void main(String[] args) { int i=1; while(i<=10) { System.out.println(i); i++; } } } Get link Facebook X Pinterest Email Other Apps Comments UnknownJuly 11, 2019 at 8:42 AM(String ()args) (String args () ) Which is correct ReplyDeleteRepliesUnknownJuly 16, 2019 at 7:04 AMIt's wrong broDeleteRepliesReplyUnknownJuly 16, 2019 at 7:06 AM(String[ ]args) or(Sting args[ ]) it's correct broDeleteRepliesReplyReplyBDCJAVAJuly 11, 2019 at 11:12 PMboth are correct but we have to write like this (String[] args) or (String args[]) ReplyDeleteRepliesReplyAdd commentLoad more... Post a Comment
(String ()args)
ReplyDelete(String args () )
Which is correct
It's wrong bro
Delete(String[ ]args) or
Delete(Sting args[ ]) it's correct bro
both are correct but we have to write like this (String[] args) or (String args[])
ReplyDelete