compate negative and positive integer in java code example
Example 1: convert negative number to positive in javascript
Math.abs("the negative number")
Example 2: how to substract two numbers to give positive outcome in c++ by the hep of pointers
#include <cstdio>
#include <cstdlib>
void update(int *a,int *b) {
int temp = *a;
*a = *a + *b;
*b = abs(temp - *b);
}
int main() {
int a, b;
int *pa = &a, *pb = &b;
scanf("%d %d", &a, &b);
update(pa, pb);
printf("%d\n%d", a, b);
return 0;
}