C++ Programming Question:
Download Job Interview Questions and Answers PDF
What is the difference between declaration and definition?
Answer:
The declaration tells the compiler that at some later point we plan to present the definition of this declaration.
E.g.: void stars () //function declaration
The definition contains the actual implementation.
E.g.: void stars () // declarator
{
for(int j=10; j > =0; j--) //function body
cout << *;
cout << endl; }
E.g.: void stars () //function declaration
The definition contains the actual implementation.
E.g.: void stars () // declarator
{
for(int j=10; j > =0; j--) //function body
cout << *;
cout << endl; }
Download C++ Programming Interview Questions And Answers
PDF
Previous Question | Next Question |
What is function overloading and operator overloading? | What are the advantages of inheritance in C++? |