Page 37 - C Programming
P. 37

ตัวอย่างที่ 2-8 โปรแกรมแสดงข้อความสีเหลืองพื้นขาวกระพริบ







                             #include <stdio.h>


                             #include <conio.h>


                             void main(void)


                               {


                                     clrscr();


                                     textbackground(WHITE);



                                     textcolor(BLUE |BLINK);


                                     gotoxy(35,10);  cprintf("******************");


                                     gotoxy(35,11);  cprintf("     ELECTRONICS    ");


                                     gotoxy(35,12);  cprintf("******************");



                                     getch();


                               }
   32   33   34   35   36   37   38   39   40   41   42