#include <stdio.h> #include<math.h> int main() { double (*fp)(double); fp=sin; printf("%lf\n",fp(3.14/2)); return 0; }