Differentiate between declaration and definition in C++?
Answer / atul shankhwar
A declaration introduces a name into the program; a definition provides a unique description of an entity (e.g. type, instance, and function). Declarations can be repeated in a given scope, it introduces a name in a given scope. There must be exactly one definition of every object, function or class used in a C++ program.
A declaration is a definition unless:
it declares a function without specifying its body,
it contains an extern specifier and no initializer or function body,
it is the declaration of a static class data member without a class definition,
it is a class name definition,
it is a typedef declaration.
A definition is a declaration unless:
it defines a static class data member,
it defines a non-inline member function.
| Is This Answer Correct ? | 0 Yes | 0 No |
Adobe Interview & Adobe Placement Paper
What is singleton pattern in c++?
How many lines of code you have written for a single program?
Is c++ the hardest language?
What is the difference between "calloc" and "malloc"?
What does std mean in c++?
which one is equivalent to multiplying by 2:Left shifting a number by 1 or Left shifting an unsigned int or char by 1?
How a pointer differs from a reference?
without if else statement can be written ah
What is a try block?
What is the importance of mutable keyword?
Explain public, protected, private in c++?