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?
Select Answer
No, using defines a distinct type
using
No, using lacks function pointer support
Yes, using provides a readable alias
Yes, but using increases execution time