fork download
  1. #include <stdio.h>
  2. int main() {
  3. char name[30];
  4. printf("What is your name: ");
  5. scanf("%s", name); // ไม่ต้องใช้ &
  6. printf("Hello %s\n", name);
  7. printf("I love U\n"); // ใส่เครื่องหมายคำพูดรอบข้อความ
  8.  
  9. return 0; // คืนค่า 0 เพื่อบอกว่าโปรแกรมทำงานสำเร็จ
  10. }
Success #stdin #stdout 0s 5292KB
stdin
Standard input is empty
stdout
What is your name: Hello  ���
I love U