Answer:
10^6*10000=10,000,000,000
Step-by-step explanation:
Answer:
23
Step-by-step explanation:
Step 1:
3 - -5 (4)
Step 2:
3 - (-20)
Step 3:
3 + 20
Answer:
23
Hope This Helps :)
Answer:
Actually that's incorrect
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)