C AND C++ PROGRAMMING
A lot of programmings in c and c++ are available here.
Links:
Home
privacy and policy
C Program
C++ Program
Topics and Examples
Question Bank
NMCT
2/25/2016
The do-while loop
do-while loop
#include<stdio.h>
#include<conio.h>
void main()
{
int sum=0;
int i=1;
do
{
sum=sum+i;
i=i+2;
}
while(i<=12);
printf("Sum=%d",sum);
getch();
}
Output:
Sum=36
No comments:
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
No comments:
Post a Comment