请分析以下程序,并回答标号所示程序语句的功能。
int mul(int x,int y)①
{
int z;
z=x * y;②
return z;
}
main( )
{
int a,b,c;
scanf (" %d, %d",&a,&b);③
c=mul(a,b);④
printf( "mul= %d" ,c);⑤
getchar( );
}
(1)叙述①标号所示程序语句的功能。
(2)叙述②标号所示程序语句的功能。
(3)叙述③标号所示程序语句的功能。
(4)叙述④标号所示程序语句的功能。
(5)叙述⑤标号所示程序语句的功能。