การรับและการแสดงผลข้อมูล Chapter 2 การรับและการแสดงผลข้อมูล กราบเรียนท่านอาจารย์ และสวัสดีเพื่อนๆ 231402 Introduction to Programming Department of Computer Business
การแสดงข้อมูล ฟังก์ชัน printf() <stdio.h> รูปแบบ printf(“format string”,argument…) format string : ส่วนควบคุมการพิมพ์ต่าง ๆ argument : ตัวแปร , ค่าคงที่ , นิพจน์ ฯลฯ example printf(“\n This is a test first program”); printf(“Your score is %d”,score); กราบเรียนท่านอาจารย์ และสวัสดีเพื่อนๆ 231402 Introduction to Programming Department of Computer Business
อักขระพิเศษที่ใช้สำหรับการควบคุม \n การขึ้นบรรทัดใหม่ \t การเลื่อนระยะ tab ทางแนวนอน \b การเลื่อนเคอร์เซอร์ย้อนกลับครั้งละ 1 ตัวอักษร \f การเลื่อนระยะหน้ากระดาษ \r การเลื่อนเคอร์เซอร์ไปอยู่ต้นบรรทัด กราบเรียนท่านอาจารย์ และสวัสดีเพื่อนๆ 231402 Introduction to Programming Department of Computer Business
การแสดงข้อมูล ฟังก์ชัน putchar() <conio.h> รูปแบบ putchar(argument) argument : ตัวแปร , ค่าคงที่ , ฟังก์ชัน example x=‘A’; putchar(x); putchar(‘A’); กราบเรียนท่านอาจารย์ และสวัสดีเพื่อนๆ 231402 Introduction to Programming Department of Computer Business
การรับข้อมูล ฟังก์ชัน scanf() <stdio.h> รูปแบบ scanf(“format string”,&argument…) format string : รูปแบบการรับข้อมูล argument : ตัวแปรที่ใช้รับข้อมูล example scanf(“%d”,&age); scanf(“%d %s %f”,&order,&name,&value); กราบเรียนท่านอาจารย์ และสวัสดีเพื่อนๆ 231402 Introduction to Programming Department of Computer Business
การรับข้อมูล ฟังก์ชัน getchar() <conio.h> รูปแบบ argument = getchar() argument : ตัวแปรที่ใช้รับข้อมูลเป็นตัวอักษร example charactor = getchar(); กราบเรียนท่านอาจารย์ และสวัสดีเพื่อนๆ 231402 Introduction to Programming Department of Computer Business
การรับข้อมูล ฟังก์ชัน getche() <conio.h> รูปแบบ argument = getche() argument : ตัวแปรที่ใช้รับข้อมูลเป็นตัวอักษร example charactor = getche(); กราบเรียนท่านอาจารย์ และสวัสดีเพื่อนๆ 231402 Introduction to Programming Department of Computer Business
การรับข้อมูล ฟังก์ชัน getch() <conio.h> รูปแบบ argument = getch() argument : ตัวแปรที่ใช้รับข้อมูลเป็นตัวอักษร example charactor = getch(); กราบเรียนท่านอาจารย์ และสวัสดีเพื่อนๆ 231402 Introduction to Programming Department of Computer Business
การรับข้อมูล ฟังก์ชัน gets() <conio.h> รูปแบบ gets(argument) example gets(charactor); กราบเรียนท่านอาจารย์ และสวัสดีเพื่อนๆ 231402 Introduction to Programming Department of Computer Business