ccpp y
Read

ccpp y

by mi-pitt

#include<stdio. h> #include<math. h> float magnitud(float r,float i) { float m; m=pow (r,2) + pow (i,2); m=sqrt(m); return m; } void main () { float a,b,c; a=3;b=4; c=magnitud(a,b); printf("la magnitud de %f y %f es %f,a,b,c"); }

Read the publication