[Basic C++] 22 - Declaration and Definition
2020. 7. 27.
Declaration and definition are the two most fundamental concepts to form programs in C++. Although many programmers including me write code without a full understanding of these concepts and it may lead our code to critical failures or significantly decreased performance. 1. Declaration Declaring a variable is to tell the compiler the existence of the variable at the point of the declaration. By..