This is just to easy the correct answer is A
Answer:
y = x - 5
Step-by-step explanation:
Given the equation
y = x + ?
We are being asked what value is added to x to give y
Consider the table, that is
x = 1 → y = - 4
x = 2 → y = - 3
x = 3 → y = - 2
x = 4 → y = - 1
x = 5 → y = 0
x = 6 → y = 1
In each case 5 is being subtracted from x to obtain y, that is
y = x - 5 ← equation relating x and y
#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:
Step-by-step explanation:
here you go!!