Ask Question
10 September, 10:31

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

+5
Answers (1)
  1. 10 September, 13:22
    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?
Get 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 there is no answer or all answers are wrong, use a search bar and try to find the answer among similar questions.
Search for Other Answers