为什么我不能在其他变量中分配平均功能?

时间:2019-07-25 19:29:40

标签: 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);


}

0 个答案:

没有答案