标签: c
为什么我不能在其他变量中分配平均值函数?
void average(int a,int b){ float avg=(a+b)/2; } void main(){ int x,y; float res; printf("enter x and y value:"); scanf("%d%d",&x,&y); res=average(x,y); printf("%f",res); }