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

main() { printf("\n %d %d %d",sizeof('3'),sizeof("3"),sizeof(3)); }

6 Answers  


if function is declared as static in one source file, if I would like to use the same function in some other source file...is it possible....how ?

2 Answers   NetApp,


how can be easily placed in TCS.

0 Answers   TCS,


What is a void * in c?

0 Answers  


How old is c programming language?

0 Answers  






Why main function is special give two reasons?

0 Answers  


write a program for size of a data type without using sizeof() operator?

22 Answers   HCL, IBM,


What is pragma in c?

0 Answers  


What does s c mean in text?

0 Answers  


hi how to convert program from notepad to turboc editor can u please help me

3 Answers  


String concatenation

2 Answers  


Is printf a keyword?

0 Answers  


Categories