I have this c code having a global variable
main_prog.c
PLD po;
int main(){}
i has this function in the definition
functiondef.c
void function(PLD po)
{
extern po;
}
what is my problem is that how does the compiler know that it uses extern po or the po parameter ??
source
share