C Programming - Declarations and Initializations - Discussion

Discussion Forum : Declarations and Initializations - General Questions (Q.No. 2)
2.
What are the types of linkages?
Internal and External
External, Internal and None
External and None
Internal
Answer: Option
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.
Discussion:
95 comments Page 10 of 10.

Neha said:   7 years ago
What is linkages?
(2)

Sreenu said:   7 years ago
What is meant by linkages?

Sudhanshu Kumar said:   7 years ago
Please tell definition of linkages.
(4)

Nali srikanth said:   6 years ago
Static variable is a fixed.
Non static variable can be changed.
None linkage means local variable.
(6)

Manoj mehra said:   5 years ago
In programming languages, particularly the compiled ones like C, C++, and D, linkage describes how names can or can not refer to the same entity throughout the whole program or one single translation unit. The static keyword is used in C to restrict the visibility of a function or variable to its translation unit.
(8)


Post your comments here:

Your comments will be displayed after verification.