填空题

    以下程序的执行结果是( )。#includemain(){ int a,b,c;a=10,b=12;c=mult(a,b);printf("%d*%d=%d\n",a,b,c);}mult(x,y)int x,y;{return(x*y); }