Page 213 - C Programming
P. 213

17.3 เริ่มต้นการเขียนโปรแกรมภาษา C++


          ตัวอย่างที่ 17.1 โปรแกรมแสดงข้อความ Borland C++ for Control






                    //Borland C++ Programming


                    #include <stdio.h>



                    #include <conio.h>



                    main()


                    {   clrscr();



                         printf("Borland C++ for Control");


                         getch();



                         return(0);


                    }





              ผลของการรันโปรแกรม


                             โปรแกรมจะแสดงข้อความ Borland C++ for Control
   208   209   210   211   212   213   214   215   216   217   218