You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
586 B
26 lines
586 B
#include "arithmeticDivision.h"
|
|
#include <stdio.h>
|
|
#include <limits.h>
|
|
#include <stdlib.h>
|
|
|
|
int* division_integer(int dividend, int divisor) {
|
|
if(divisor == 0) {
|
|
return NULL;
|
|
}
|
|
// Overflow protection
|
|
if (dividend == INT_MIN && divisor == -1) {
|
|
return NULL;
|
|
}
|
|
int* result = malloc(sizeof(int));
|
|
*result = dividend / divisor;
|
|
return result;
|
|
}
|
|
|
|
long* division_long(long dividend, long divisor) {
|
|
if(divisor == 0) {
|
|
return NULL;
|
|
}
|
|
long* result = malloc(sizeof(long));
|
|
*result = dividend / divisor;
|
|
return result;
|
|
}
|