Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Will a function declared inside main() have external linkage or none linkage?

See the following code:

/* first file */

int i; /* definition */
int main () {
  void f_in_other_place (void);   /* declaration */
  i = 0
  return 0;
}
/* end of first file */


/* start of second file */

extern int i; /* declaration */
void f_in_other_place (void){   /* definition */
  i++;
}
/* end of second file */

I know that external objects have external linkage and internal objects have none linkage(ignoring extern for a moment). Now if i talk about the function f_in_other_place(), it is declared inside main function. So will the identifier for it be treated as an internal object ? If yes than it should have none linkage but as visible in program this function refers to it's definition in second file which shows that identifier for it is behaving like an object with external linkage. So i am confused whether this identifier here has external linkage or none linkage ?

Now coming to the extern keyword, I read somewhere that function declaration implicitly prefixes extern. So even if i have not mentioned extern for this function identifier explicitly, will my function's identifier by default become an object with external linkage and scoped inside main() ? Please correct me if i am going in wrong direction.

like image 950
LocalHost Avatar asked Oct 16 '20 11:10

LocalHost


People also ask

What is the difference between internal and external linkage?

Internal linkage refers to everything only in scope of a translation unit. External linkage refers to things that exist beyond a particular translation unit. In other words, accessible through the whole program, which is the combination of all translation units (or object files).

What is true about external linkage in C?

External Linkage: An identifier implementing external linkage is visible to every translation unit. Externally linked identifiers are shared between translation units and are considered to be located at the outermost level of the program.

What are the types of linkages 1 point internal and external external internal and none external and none internal?

Explanation: External Linkage-> means global, non-static variables and functions. Internal Linkage-> means static variables and functions with file scope. None Linkage-> means Local variables.

How do you give a const value to an external linkage?

Although constexpr variables can be given external linkage via the extern keyword, they can not be forward declared, so there is no value in giving them external linkage. This is because the compiler needs to know the value of the constexpr variable (at compile time).

What is an identifier with internal linkage?

An identifier with internal linkage denotes the same object or function within one translation unit if it is accessed by any function. Let see an example to understand the internal linkage. Suppose in a program there are two files Message.c and Driver.c.

What is external linkage in C?

It is the default linkage for globally scoped variables and functions. Thus, all instances of a particular identifier with external linkage refer to the same identifier in the program. The keyword extern implements external linkage.

How does the keyword extern implement external linkage?

The keyword extern implements external linkage. When we use the keyword extern, we tell the linker to look for the definition elsewhere. Thus, the declaration of an externally linked identifier does not take up any space.

Does the declaration of an externally linked identifier take up any space?

Thus, the declaration of an externally linked identifier does not take up any space. Extern identifiers are generally stored in initialized/uninitialized or text segment of RAM. Please do go through Understanding extern keyword in C before proceeding to the following examples. It is possible to use an extern variable in a local scope.


2 Answers

I know that external objects have external linkage and internal objects have none linkage

I think that by the term "internal objects" you mean objects declared in block scopes.

As for this declaration

int i; /* definition */

then it is a declaration. You may place several such declarations one after another like

int i; /* definition */
int i; /* definition */
int i; /* definition */

The compiler generates the so-called tentative definition of this variable at the end of the translation unit initializing it by zero.

As for the function declaration in main then according to the C Standard (6.2.2 Linkages of identifiers)

5 If the declaration of an identifier for a function has no storage-class specifier, its linkage is determined exactly as if it were declared with the storage-class specifier extern. If the declaration of an identifier for an object has file scope and no storage-class specifier, its linkage is external.

and

4 For an identifier declared with the storage-class specifier extern in a scope in which a prior declaration of that identifier is visible,31) if the prior declaration specifies internal or external linkage, the linkage of the identifier at the later declaration is the same as the linkage specified at the prior declaration. If no prior declaration is visible, or if the prior declaration specifies no linkage, then the identifier has external linkage.

So this function declaration in main

void f_in_other_place (void);

is equivalent to

extern void f_in_other_place (void);

As there is no previous function declaration in the file scope then this function has external linkage.

If for example in the file scope before main there would be a declaration with the keyword static like

static void f_in_other_place (void);

then the function declared in main would have internal linkage.

like image 182
Vlad from Moscow Avatar answered Nov 15 '22 17:11

Vlad from Moscow


From this linkage reference:

external linkage. The identifier can be referred to from any other translation units in the entire program. All non-static functions, all extern variables (unless earlier declared static), and all file-scope non-static variables have this linkage.

[Emphasis mine]

It doesn't matter where you declare the function, it will always have external linkage.

like image 23
Some programmer dude Avatar answered Nov 15 '22 16:11

Some programmer dude