- 2
What is the difference between declaring and defining a variable in c?
2 Respuestas
+ 1
Defining makes something constant and it becomes global like a function, a variable...
Declaring can be also constant but you can change the value of a variable is declared.
0
declaration: int a;
definition:a=1;