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
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
i=1,2,3.
ReplyDeletej=1.
correct
Deletei=1,2,3
Deletej=1
can u send exact answer ?
DeleteI=1j=1
DeleteI=2j=1
I=3j=1
correct
Delete