Name | Type | Description |
---|---|---|
D | ln | Large number divisor. |
d | (unsigned) long | Scalar divisor. |
Q | ln * | Pointer to the large number variable that will contain the quotient. |
R | ln * | Pointer to the large number variable that will contain the remainder. |
r | (unsigned) long * | Pointer to the long integer variable that will contain the remainder. |
ln Num = "98723498723948798279834"; ln Den = "23492039842098094823"; ln Q, R; Num.Divide( Den, &Q, &R );