Can i convert to standart type ttmath::Factorial(256)?
I need to calculate the factorial of 256 and use it in further calculations or print eg in textBox1-> Text =
How can i do this?
#include <iostream>
#include "ttmath/ttmath.h"
int main()
{
std::string result;
ttmath::Big<1, 5> a, b;
a = 256;
b = ttmath::Factorial(a);
b.ToString(result);
std::cout << result << std::endl;
}
it does not work, probably due to the fact that I work in C + + / CLI