Ask Question

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.---

+3
Answers (1)
  1. 23 September, 03:30
    0
    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 " ... ".
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Write the definition of a function printDottedLine, which has no parameters and doesn't return anything. The function prints to standard ...” in 📗 Computers & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers