+91-85006-22255
What will be the output of the following program?
public class YZ { public static void main(String args[]) { int z = 0; for (int y = 0; y >= z; ++y, z++) { System.out.print(y + "~"); System.out.println(z); } }}
Topic: for Loop In Java
Read this topic Take test on this topic
Open In App