Please enable JavaScript.
Coggle requires JavaScript to display documents.
C Programming - Coggle Diagram
C Programming
Basics
Operators ตัวดำเนินการทางคณิตศาสตร์
' * ' คูณ
/ หาร
% มอด
x % y = x - (x / y) * y
' - ' ลบ
' + ' บวก
== เท่ากับ
!= ไม่เท่ากับ
stdio.h
คำสั่งรับค่าจากแป้นพิมพ์ Input
scanf
คำสั่งแสดงผล Output
printf
รหัสควบคุม Escape Sequence
\n การขึ้นบรรทัดใหม่
\t เว้นวรรค
\a ส่งเสียง
เงื่อนไข Condition
if else
nested if
else if
switch case
ลูป Loop
for
do while :question:
while :question:
ฟังก์ชั่น Function :star:
sizeof หาขนาดของตัวแปร หน่วยเป็น byte
Flowchart
Start / End
Input / Output
Process
Condition
Library
stdio.h
math.h
modf
stdbool.h
Data Types ชนิดข้อมูล
Type ประเภท
String อักขระ แทนด้วย %s
Char 1 ตัวอักษร แทนด้วย %c
Float ตัวเลขจำนวนจริง แทนด้วย %f
Integer ตัวเลขจำนวนเต็ม แทนด้วย %d
การประกาศใช้งาน bool ต้อง include stdbool.h
true
false
Array :question:
Type Casting แปลงชนิดข้อมูล
int to float
Problem ปัญหาที่พบ