以下程序的功能是计算并打印复数的差。请填空。 # include . h> struct comp { float re , float im ; } ; struct comp * m(struct comp * x , struct comp * y) {( ) ; z=(struct comp * ) malloc(sizeof(struct camp)) ; z–>re=x–>re–y–>re ; z>im=x – >im – y – >im ; return(( )) ; } int main( ) { struct comp * t ; struct comp a , b ; a.re=1 ; a.im=2 ; b.rc=3 ; b.im=4 ; t=m(( )) ; printf("z. re= %f , z. im=%f" , t – > re , t– >im) ; return 0 ; }