what is the difference between declaration and definition
of a variable or function ?

Answers were Sorted based on User's Feedback



what is the difference between declaration and definition of a variable or function ?..

Answer / suman_kotte

declares a function, but that does not define it.
declaration describes whether the function consist
arguments or not and also it will return a value or not.

definition must be as per the function declaration that was
declared rearlier.it will for the out put of that function.

ex;

main()
{
int a=1,b=2;
void sum(int , int );//declaration
sum(a,b);
}
void sum(int x, int y)//definition
{
printf("%d",x+y);
}

Is This Answer Correct ?    8 Yes 0 No

what is the difference between declaration and definition of a variable or function ?..

Answer / michael scofield

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). definition occures once through the program( memory is allocated once ), but the declaration can occur many times.
OR For a variable, the definition is the statement that actually allocates memory. For example, the statement:
long int var;
is a definition. On the other hand, an extern reference to the same variable:
extern long int var;
is a declaration, since this statement doesn�t cause any memory to be allocated. Here�s another example of a declaration:
typedef MyType short;

Is This Answer Correct ?    4 Yes 0 No

what is the difference between declaration and definition of a variable or function ?..

Answer / ashu_deepu

i will like to add 1 thing abt d variabes.

declaring a variable means
int deepu; //it is declaration

defining means assigning value to the variable.

eg: int deepu=2018; //it is definition

Is This Answer Correct ?    4 Yes 5 No

Post New Answer

More C Interview Questions

What is ponter?

0 Answers   TCS,


what are bit fields? What is the use of bit fields in a structure declaration?

0 Answers   Flextronics, TISL, Virtusa,


Write a C program to print 1 2 3 ... 100 without using loops?

15 Answers   Hindalco,


Why we not create function inside function.

0 Answers  


Which is the best sort method for library management?

1 Answers   Microsoft,






What is 1d array in c?

0 Answers  


What is #include cctype?

0 Answers  


Can anyone tell what is stack overflow? what precaution we should take?

1 Answers  


i want to job in your company, so how it will be possible.

3 Answers   TCS,


Why calloc is better than malloc?

0 Answers  


Magic square

0 Answers  


What are the __date__ and __time__ preprocessor commands?

0 Answers  


Categories