Computer Science, asked by Bhargabi3132, 1 year ago

What is the defintiona nd declaration of a variable?

Answers

Answered by sheeba34
0
Declaration of a variable in C means that the variable is only declared and allocated a block of memory but still has no value. Definition of a variable means to assign or initialize it with some specific value. For example: int a; //declaration.
Similar questions