Compile ผ่านแล้ว แต่โปรแกรมมัน Error #ภาษา C

ผมใช้โปรแกรม devc++ แล้วมัน compile ผ่านแล้วพอใช้จริงๆ มันมีปัญหาใส่ข้อมูลครบแล้วคำนวณหาค่ารวมของ Sum มันจะคิด has stopped working
#include <stdio.h>
int main () {
    char Name ;
    int Eng,Thai,Math,Sum ;
    float Aver ;
    printf("Please enter your Name\n") ;
    printf("Name ") ;
    scanf("%s",&Name) ;
    printf("Please enter your Score\n") ;
    printf("English ") ;
    scanf("%d",&Eng) ;
    printf("Thai ") ;
    scanf("%d",&Thai) ;
    printf("Math ") ;
    scanf("%d",&Math) ;
    Sum = Thai+Eng+Math ;
    Aver = Sum/3 ;
    printf("Your name is %s.Average score is %d.", Name,Aver) ;
    getchar () ;
}
แสดงความคิดเห็น
โปรดศึกษาและยอมรับนโยบายข้อมูลส่วนบุคคลก่อนเริ่มใช้งาน อ่านเพิ่มเติมได้ที่นี่