Ask Question
5 April, 02:52

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

+5
Answers (1)
  1. 5 April, 03:17
    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 & 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