After the following programs have run, what
will the output to the screen look like? Write your answer in the space provided.
#include <iostream.h>
main()
{
int i=0, j=0;
for (i=0; i<3; i++)
{
for(j=3;j>0;j )
{
if(i==O)
cout « j « endl;
else
cout « i « j « endl;
}
}
cout « End of Loops\n;
return 0;
}