Computer Science, asked by akankshaChacko746, 1 year ago

write a function named addem with call by address integer parameters.The function will add 2 to the first parameter and 5 to the second parameter

Answers

Answered by kvnmurty
0
This is a simple function.

void addem (int *x, int *y)
{

   *x = *x + 2;
   *y = *y + 5 ;

}


kvnmurty: click on thanks button above;; select best answer
Similar questions