Нужно срочно сделать эту хуету #include "stdafx.h" #include <stdio.h> #include <iostream> #include <math.h> double myfun(double); int _tmain(int argc, _TCHAR* argv[]) { double(*array[3])(double); array[0]=exp; array[1]=sqrt; array[2]=myfun; printf("%.1f\n",(*array)((*array[2])((**(array+1))(4)))); system("pause"); return 0; } double myfun(double d){ d-=1; return d;