Answer:
The answer to this question can be given as:
Function definition:
void printDottedLine() //define function printDottedLine().
{
//function body.
cout << ".....\n"; //message
}
Explanation:
In above c++ programming language we define a function definition that can be explained as follows: