Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revision | |||
programming_languages:cpp:pointer [2017/10/04 23:24] – [Member Selection] phreazer | programming_languages:cpp:pointer [2017/10/05 00:24] (current) – [Function pointer] phreazer | ||
---|---|---|---|
Line 159: | Line 159: | ||
// Function can be called like this: | // Function can be called like this: | ||
f(); | f(); | ||
+ | // Pointer func2, which returns a pointer to a char and takes a pointer to a const char and an int as a parameter. | ||
+ | char * (*func2)(const char *, int) = strchr; | ||
</ | </ |