devxlogo

Internal and External Linkage

Internal and External Linkage

Global inline functions, consts and typedefs have internal linkage.

That means that the declarations in these two files do not interfere with each other:

 	//File1.c	typedef int T;	const int a = 12;	inline T f (int i)	{ return i+a; }	//File2.c	typedef void T;	const int a = 8;				inline T f (double d)	{ cout  <<  d; }


A const can be given external linkage by an explicit declaration:

 	//File3.c					extern const int a;			const int a = 77;	//File4.c	extern const int a;	void g () { cout << a; }	Here, g () will print 77.

See also  Professionalism Starts in Your Inbox: Keys to Presenting Your Best Self in Email
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist