Give the output of the following on c++ 

Give the output of the following on c++


#include<iostream.h>
Void main ()
{
Int x;
for( x=1 ; x<=20 ; x+=5)
cout<<x<<endl;
}

Output--


 1,6,11,16


Post a Comment

Previous Post Next Post