I am looking to take:
INT32 num[45];
INT32 mod[3];
INT32 ans[4];
(the num and mod arrays get set to values here)
I've tried:
ans = num % mod;
&ans[0] = (INT32*)(num & mod);
...but can't get it to work. Is it possible to do a mod calculation using arrays for all of the operands?
INT32 num[45];
INT32 mod[3];
INT32 ans[4];
(the num and mod arrays get set to values here)
I've tried:
ans = num % mod;
&ans[0] = (INT32*)(num & mod);
...but can't get it to work. Is it possible to do a mod calculation using arrays for all of the operands?