fork download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. // แสดงชื่อ-นามสกุล ของคุณกิตติพงศ์
  5. printf("ชื่อ: นายกิตติพงศ์ นมขุนทด\n");
  6.  
  7. // แสดงชั้นเรียน
  8. printf("ชั้น: ม.5/15\n");
  9.  
  10. // แสดงเลขที่
  11. printf("เลขที่: 20\n");
  12.  
  13. return 0;
  14. }
  15.  
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
ชื่อ: นายกิตติพงศ์ นมขุนทด
ชั้น: ม.5/15
เลขที่: 20