꺄뜨르 2011. 12. 7. 10:20
void main()
{
void (*fp)(void);  //void형 리턴값 void형 매개변수를 갖는 함수포인터 fp
fp = main;
printf("%X %X\n",main,fp);
}