what is the output generated by the following code code example
Example: What's the output of the following code?
for (int i=0; i<=20; i+=4) {
System.out.print(i + " ");
}
for (int i=0; i<=20; i+=4) {
System.out.print(i + " ");
}