I am doing a Project using c , and I encountered a Problem while doing some calculations.. actually I want to store a big number (2^52) in any data type
int helper = TwoOf(26);//52 over 2
unsigned long long help = helper * helper;
- function Twoof(x) -> calculates x^2
I used long long to store 2^52 but the debugger shows it has a zero value.
can anyone help?