55. Type Aliases

Question.1

Two developers define a callback type:

Developer A -- typedef:

typedef void (*Callback)(int, int);

Developer B -- using:

using Callback = void (*)(int, int);

Are these equivalent?

Need Help? Refer to the Quick Guide below

Select Answer