我这里的警告要怎么处理
#include <stdio.h>#include <stdlib.h>
int main()
{
int k,j,o;
char a[10],n;
float b[10],c[10],d[10],t1=0,t2=0,t3=0,i,e,f;
printf("请输入学生的姓名,理论成绩,实验成绩:\n");
for(k=0;k<10;k++)
scanf("%c%f%f",&a[k],&b[k],&c[k]);
printf("请输入学生姓名:");
scanf("%c",&n);
for(k=0;k<10;k++)
{o=strcmp(n,a[k]);
if(o==0)
{printf("%f\t%f\t%f\n",b[k],c[k],d[k]);break;}}
G:\C语言运行程序\成绩排序\main.c|14|warning: implicit declaration of function 'strcmp' [-Wimplicit-function-declaration]|