I'm new to programming. So, details are appreciated.
#include<stdio.h>
#include<math.h>
    int main()
    {
        float x, f(x);
        printf("Enter x=");
        scanf("%f", &x);
        f(x)= 3*pow(x, 5)- 5*sqrt(x)-6*sin(x); /*in this line compiler shows error*/
        printf("f(x)= %f", f(x));
        return 0;
    }
 
     
     
    