fork download
  1. #include <stdio.h>
  2.  
  3. int main(int argc, char *argv[]) {
  4. double avg = 3.75;
  5.  
  6. printf("Hello\n");
  7. printf("Avg is %f\n", avg);
  8.  
  9. // แก้ไขการหารด้วยศูนย์
  10. printf("Number is %d\n", 12 / 1); // เปลี่ยนเป็น 12 / 1 เพื่อให้ผลลัพธ์ถูกต้อง
  11.  
  12. return 0;
  13. }
Success #stdin #stdout 0s 5276KB
stdin
Standard input is empty
stdout
Hello
Avg is 3.750000
Number is 12