Difference between Declaration and Definition in C
Mostly beginner programmers are not aware of difference between declaration and definition in C. In this tutorial I will explain the both terms clearly. Declaration It tells compiler about the name and type of the identifier (variable, function, array, etc.). Memory is not reserved in this case. Variable Declaration extern int num; In above example …
Difference between Declaration and Definition in C Read More »
