Answer:
The last part is not there
Step-by-step explanation:
Answer:
your answers are in the attachment
hope it helps...
Step-by-step explanation:
#include <stdio.h> #include <stdlib.h>
// Function to perform division (x / y) of two numbers x and y. // without using division operator in the code. int divide(int x, int y)
{ // handle divisibility by 0. if (y == 0)
{ printf("Error!! Divisible by 0"); exit(1);
} // store sign of the result.
int sign = 1; if (x * y < 0)
Answer:
arithmetic, divide by 2
Step-by-step explanation:
Answer:
x = 8
Step-by-step explanation:
-1/4 (2x + 8) = -6
Multiply both sides by -4.
2x + 8 = 24
Subtract 8 from both sides.
2x = 16
Divide both sides by 2.
x = 8