Solve this Code: Problem 1

Find the Output of the following code:


for ( i = 1 , j = 1 ; i <= 3 ; i ++ )

{

     cout << “ i = “ << i ;

     cout << “  j = “ << j ;

     cout<<endl;

}


please enter the Output in the comment section



Comments

Post a Comment