/in/foo.c: In function 'main':
/in/foo.c:16:11: warning: format '%c' expects argument of type 'char *', but argument 2 has type 'int' [-Wformat=]
scanf("%c %d %d %c %c %d\n",name,&fscore,&cscore,&isvip,&iswest,&sciNum);
^
/in/foo.c:6:6: warning: unused variable 'sumBUD' [-Wunused-variable]
int sumBUD,sumAll=0;
^~~~~~
/in/foo.c:16:3: warning: 'name' may be used uninitialized in this function [-Wmaybe-uninitialized]
scanf("%c %d %d %c %c %d\n",name,&fscore,&cscore,&isvip,&iswest,&sciNum);
^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~