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

Popular posts from this blog

Introduction of java Programming language.

Stack data structure.