Answer:
The function definition to this question can be given as:
Function definition:
void printDottedLine() //define method.
{
//method body
printf(".....\\");
//print periods.
}
Explanation:
The description of the above function definition can be given as:
- In the above code, we define a method that name is "printDottedLine". This method does not return any value because we use the void return type in this function.
- In this function, we print the five periods(.) and terminate by new line character(\\). This code will give five periods that is ".....".