B beingchinmay New member Jan 17, 2017 #1 Declaration tells the compiler that at the later point in the program the definition of declared variable will be present.
Declaration tells the compiler that at the later point in the program the definition of declared variable will be present.
K kunalkumar New member Feb 9, 2017 #2 As far as I know, definition defines the memory area ( allocates the memory ) for the variable and the declaration tells about the signature of the variable ( type and size to be considered).
As far as I know, definition defines the memory area ( allocates the memory ) for the variable and the declaration tells about the signature of the variable ( type and size to be considered).
A aegisinfoways New member Feb 24, 2017 #3 A declaration provides basic features of a symbol: its kind and its name. A definition provides all of the facts of that symbol--if it's a function.
A declaration provides basic features of a symbol: its kind and its name. A definition provides all of the facts of that symbol--if it's a function.