Ask Question
30 March, 06:18

Write a function named times_ten. the function should accept an argument and display the product of its argument multiplied times 10

+4
Answers (1)
  1. 30 March, 09:34
    0
    Since you did not specify a language i am assuming C

    void x10 (int n) {

    printf ("%d / n", n*10);

    return;

    }
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Write a function named times_ten. the function should accept an argument and display the product of its argument multiplied times 10 ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers