Page 65 - C Programming
P. 65

ตัวอย่างที่ 5-2  โปรแกรมวนรอบ 10 รอบ





                            #include <stdio.h>


                            #include<conio.h>


                            void main(void)



                            {  char index;


                                clrscr();


                                for(index=1;index<11;index++)


                                  {


                                     printf(“Loop = %d\n”,index);


                                     delay(500);



                                  }


                                getch();


                             }
   60   61   62   63   64   65   66   67   68   69   70