function-pointer tag

3 questions


1 answers
95 views
0
I'm C Newbie. Please tell me how to use a function pointer

Why is the pointer so hard?It's hard to use a normal pointer. A function pointer?How do I turn over the factor?Please tell me how to use it, not too difficult ㅜ

1 years ago

1 answers
120 views
0
Question about function pointer using typeef

Hello.You can study function pointers using typeef.As I studied the usage example, there is a source like below.What I'm curious about is what is the return data type of the abc function?And return (t...


1 answers
127 views
0
Function pointer question.

I understand that typeef or using can be used to simplify the use of function pointers.typedef void func1(int, int);typedef void (&func2)(int, int);typedef void (*func3)(int, int);By the way, I wa...


© 2024 OneMinuteCode. All rights reserved.