Skip to content
CodeWiki
Practice
Paths
Tracks
Cheatsheets
Playground
Glossary
AI era
Search
⌘K
English
English
Chinese
Practice
Paths
Tracks
Cheatsheets
Playground
Glossary
AI era
English
English
Chinese
Practice
/
Quiz
/
C++
/
C function pointers
Which declaration makes handler a pointer to a function that takes int and returns int?
from C function pointers
C23 (GCC 13.3.0)
beginner
1 min
Which declaration makes handler a pointer to a function that takes int and returns int?
int (*handler)(int);
int *handler(int);
int handler(*int);
int handler(int *);
Check
Ask AI about this kata
Report an error
next kata
What does this program print?
Predict the output
A new version is available
Reload