Section 6.11 Word Matching Exercise
Local Variable
Global Variable
Static Variable
Inline Function
Default Argument
is defined with the keyword inline, which tells the compiler to replace the function invocation with the function code. | |
is to define default values for arguments in case that an argument is not provided. | |
is a variable that is defined inside a function. | |
is a variable that is defined outside a function. | |
is defined with the keyword static inside a function. It is allocated a permanent memory in the lifetime of a program. |