+91-85006-22255
What will be the output of the following program?
class PrintFormation { public static void main(String[] args) { for (int i = 0; i < 5; i++) { for (i = 0; i < 4; i++) { System.out.print(i + " "); } } }}
Topic: Learn Arrays And Loops
Read this topic Take test on this topic
Open In App