Main » 2013 » December » 12 » C - 9 - Do While Loops
11:13 PM C - 9 - Do While Loops |
#include <stdio.h>
#include <conio.h>
int main(void)
{
int counter = 1;
do{
printf("%d\n", counter);
counter++;
}while(counter<10);
getch();
}
do while دالة لعمل loop بيتكتب الأمر داخل الـ do وبعدين بيتكتب while ويتكتب جواها الشرط
|
Category: C Programming - 1 |
Views: 364 |
Added by: ahansaary
| Rating: 0.0/0 |