Write the definition of a function printDottedLine, which has no parameters and doesn't return anything. The function prints to standard output a single line (terminated by a new line character ) consisting of 5 periods.———

Respuesta :

Answer:

The function definition to this question can be given as:

Function definition:

void printDottedLine()   //define method.

{

 //method body

printf(".....\n");

 //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(\n). This code will give five periods that is ".....".
ACCESS MORE