Ask Question
18 May, 15:15

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

+3
Answers (1)
  1. 18 May, 18:30
    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?
Get 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 & 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