I do know that include guards are to prevent redefinition. But does function prototype needs include guards too (supposedly that function prototype is defined in a header and used in multiple related programs)?
I do know that include guards are to prevent redefinition. But does function prototype
Share
Declarations aren’t definitions, so you can repeat declarations as many times as you want. E.g. a file with just:
is totally legal.