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(intj=10; j > =0; j—) //function body
cout« *;
cout« endl; }
declaration.
E.g.: void stars () //function declaration
The definition contains the actual implementation.
E.g.: void stars () // declarator
{
for(intj=10; j > =0; j—) //function body
cout« *;
cout« endl; }
20:51
AtoZ C++ Interview Questions, AtoZ CPP Objective Type Questions, AtoZ C++ Study Material
0 comments:
Post a Comment