#include<stdio. h>
#include<conio. h>
#include<math.h >
void main()
{
double val,result;
printf("Enter value : ");
scanf("%f",&val );
result=asinh(va l);
printf("Result = %f",result);
getch();
}
This Program when compiled and runned giving error
asinh should hava protoype error
how to Solve this... Pls Suggest me Ans friends
#include<conio. h>
#include<math.h >
void main()
{
double val,result;
printf("Enter value : ");
scanf("%f",&val );
result=asinh(va l);
printf("Result = %f",result);
getch();
}
This Program when compiled and runned giving error
asinh should hava protoype error
how to Solve this... Pls Suggest me Ans friends
Comment