还是无聊之函数瞎搞
#include <stdlib.h>#include <stdio.h>
int abc(char *str)
{
printf("%s\n",str);
}
typedef int (*func)(char *);
int main()
{
void *arrary;
char *str="hello,world";
arrary=abc;
((func)arrary)(str);
}
2015-01-26 13:31
2015-01-26 16:53
2015-01-26 17:41
2015-01-26 19:03
2015-01-26 20:59

2015-01-26 22:28
2015-01-27 10:11
2015-01-27 16:17