Page 27 - C Programming
P. 27

ตัวอย่างที่ 2-3 โปรแกรมแสดงข้อความ I LIKE C PROGRAMMING









                                  #include <stdio.h>



                                  #include <conio.h>


                                   void  main(void)


                                     {


                                       clrscr();


                                        printf("***********************\n");


                                        printf(“I LIKE C PROGRAMMING \n");



                                        printf("***********************\n");


                                        getch();


                                     }
   22   23   24   25   26   27   28   29   30   31   32