Search This Blog

Sunday, 23 August 2020

Do while loop ..

 #include<iostream>

using namespace std;

int main()

{

int a=1;

do{

cout<<"value of a : "<<a<<endl;

a=a+1;

}

while(a<6);

return 0;

}


No comments:

Post a Comment

Search This Blog

Contact Form

Name

Email *

Message *

Popular Posts