Computer Science, asked by pankajkumarkhatuwala, 8 months ago

difference between variable declaration and variable initialisation​

Answers

Answered by piyushsaini552
2

Answer:

For a variable, a definition is a declaration which allocates storage for that variable. Initialization is the specification of the initial value to be stored in an object, which is not necessarily the same as the first time you explicitly assign a value to it.

Explanation:

mark as brainlist

Answered by netramishra35
2

Answer:

Variable Declaration

int b

variable initialization

int b=10 or any number

Similar questions