01-25 16:17
Recent Posts
Recent Comments
관리 메뉴

너와나의 관심사

함수 포인터 사용 본문

카테고리 없음

함수 포인터 사용

벤치마킹 2012. 6. 12. 16:11

함수 포인터 사용



typedef int (*CALLBACK_FUNC_PTR)(int arg, void *data);

int func_ptr(int arg, void *data);


CALLBACK_FUNC_PTR func;

int ret;


func = func_ptr;

ret  = func(1,NULL);








Comments