program to make a function of infinite do while loop in java.
public class function {
public static void main(String[] args) {
do {
System.out.print("ved");
}while(true);
}
}
■》output->
Vedvedvedvedvedvedved_ _ _ _ _ _ _
Comments
Post a Comment