#include<stdio. h>
#include<conio. h>
#include<math.h >
void main()
{
int i=1,j=2;
float k,l=1.5;
printf("%d %d\n",i,j);
printf("%d",i,j );
k=square(l);
printf("%f\n",k );
}
float square(float m)
{
float z;
z=m*m;
return(z);
}
#include<conio. h>
#include<math.h >
void main()
{
int i=1,j=2;
float k,l=1.5;
printf("%d %d\n",i,j);
printf("%d",i,j );
k=square(l);
printf("%f\n",k );
}
float square(float m)
{
float z;
z=m*m;
return(z);
}
Comment