How does linkage and name mangling work?

前端 未结 2 1223
温柔的废话
温柔的废话 2021-01-29 00:25

Lets take this code sample

//header
struct A { };
struct B { };
struct C { };
extern C c;

//code
A myfunc(B&b){ A a; return a; }
void myfunc(B&b, C&         


        
2条回答
提交回复
热议问题