#include <stdio.h>
typedef int (*pf)(int, int);
char c[] = {85,-119,-27,-117,69,12,3,69,8,93,-61,-112};
pf sum = (pf)c;
int main()
{
printf("%d\n", sum(5, 6));
return 0;
}
Прочитал утром на хабре. Оно работает!
#include <stdio.h>
typedef int (*pf)(int, int);
char c[] = {85,-119,-27,-117,69,12,3,69,8,93,-61,-112};
pf sum = (pf)c;
int main()
{
printf("%d\n", sum(5, 6));
return 0;
}
Прочитал утром на хабре. Оно работает!