Today, we will learn nesting with loops. It is used to make some pretty spectacular programs, and I hope you will be able to make them too after reading this post!
Let us first see how the compiler executes the following statements-
for(i=0;i<5;i++) //1
{for(j=0;j<5;j++) //2
{cout<<"@";
}
cout<<'/n';
...