void myfunction(void )
{
extern int myvariable;
return ;
}
what is the point in allowing local variables to have external linkage?
its scope is only myfunction so it can't be used anywhere else.
{
extern int myvariable;
return ;
}
what is the point in allowing local variables to have external linkage?
its scope is only myfunction so it can't be used anywhere else.
Comment