Write the definition of a method printdottedline, which has no parameters and doesn't return anything. the method prints to standard output a single line (terminated by a newline) consisting of five periods. write the definition of a method, printdottedline, which has no parameters and doesn't return anything. the method prints to standard output a single line (terminated by a newline) consisting of five periods.

Respuesta :

tonb
void printdottedline()
{
   printf(".....\n");
}

void printdottedline()
{
   printf(".....\n");
}