Jump to content

Long multiplication: Difference between revisions

mNo edit summary
Line 308:
#define X(V,L,I) ( ((I)<(L)) ? (V[(L)-(I)-1]-'0') : 0)
#define MIN(A,B) ( ((A)<(B)) ? (A) : (B) )
char *longmolt(const char *a, const char *b)
{
int n, m, T;
Line 352:
 
<lang c>/* using */
const char *n1 = "18446744073709551616";
int main()
{
Anonymous user
Cookies help us deliver our services. By using our services, you agree to our use of cookies.