what is the difference between declaration ,defenetion and
initialization of a variable?
Answer Posted / shabeer v c
A good example to illustrate this Question ges like this:
Whenever we apply for a job the company declares that we
have been selected. Similarly we declare a variable like
int emp;
(here emp behaves as an employee).
Then he will be assigned with a initial salary which
will be incremented in course of time period or on
experience basis.
Similarly the variable int is assigned a initial
value.
i.e int emp=20;
(value can be changed in between program)
The employee is now identified by his post, which can
define his status in the company.
Same way the variable is also defined in the
program.
ie. int emp;
| Is This Answer Correct ? | 16 Yes | 3 No |
Post New Answer View All Answers
How does sizeof know array size?
Who invented b language?
What is the main difference between calloc () and malloc ()?
Explain what is the difference between a string copy (strcpy) and a memory copy (memcpy)? When should each be used?
What is the difference between exit() and _exit() function?
What is queue in c?
What are the 5 elements of structure?
How can a number be converted to a string?
How can I access an I o board directly?
What are high level languages like C and FORTRAN also known as?
Explain the array representation of a binary tree in C.
what do you mean by enumeration constant?
What are header files in c programming?
Can I initialize unions?
I have seen function declarations that look like this