the declaration tells the compiler that at some


The declaration tells the compiler that at some later point we plan to show 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; }   

 

 

Request for Solution File

Ask an Expert for Answer!!
Computer Engineering: the declaration tells the compiler that at some
Reference No:- TGS0413011

Expected delivery within 24 Hours