196. Function Pointer

Question.4

Two developers declare the same callback type:

Raw syntax:

void (*handler)(int, uint8_t*);

With using alias:

using DataHandler = void (*)(int, uint8_t*);
DataHandler handler;

Are these equivalent?

Need Help? Refer to the Quick Guide below

Select Answer

Restart quiz!