1.

What Happens When The Extern "c" Char Func (char*,waste) Executes?

Answer»

On executing the extern "C" char FUNC (char*,WASTE), the link to the code compiled by the C compiler can be ESTABLISHED by the programmer because the "name mangling" (which includes the tokens that identify the function's return TYPE and the types of its ARGUMENTS) will be turn off for the function.

On executing the extern "C" char func (char*,waste), the link to the code compiled by the C compiler can be established by the programmer because the "name mangling" (which includes the tokens that identify the function's return type and the types of its arguments) will be turn off for the function.



Discussion

No Comment Found