What is diffrance between declaration and defination of a variable or function
Answer Posted / r.ramakrishna
Declaration means allocating memory for the variable.
Definition means defining address of the variable in a class.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Can the sizeof operator be used to tell the size of an array passed to a function?
What is #pragma statements?
How do shell structures work?
Why is c called a mid-level programming language?
What is typeof in c?
Explain what is a program flowchart and explain how does it help in writing a program?
Why c is called a mid level programming language?
Can an array be an Ivalue?
Is c is a middle level language?
Input is "rama loves rajesh and rajesh Loves rama also and rajesh wear gloves and bloves" To print output is count the numbers of times repeted the word love without case sensitive.
How do I read the arrow keys? What about function keys?
Is c easier than java?
What is data structure in c and its types?
Describe wild pointers in c?
int i=3; this declaration tells the C compiler to a) reserve space in memory to hold the integer value b) associate the name i with this memory location c) store the value 3 at this location d) all the above