Problem 3: Find the result

 Find the Output of the following code:


for ( i = 1 , j = 1 ; i <= 5 , j <= 2 ; i ++ , j ++ )

{

     cout << “ i = “ << i ;

     cout << “  j = “ << j ;

     cout<<endl;

}


please enter the Output in the comment section

Comments

Post a Comment