Showing posts with label extern in c. Show all posts
Showing posts with label extern in c. Show all posts

Friday, December 4, 2020

, ,

Understand the extern in c with extern c example

 extern keyword in C is used when we have multiple source file and we want to shear the variable among those files.Or when we prefixing a global variable with the extern keyword in C that's mean we are telling to the compiler that the variable is already defined in other file.That's means don't...