I need help working with very big numbers. According to Windows calc, the exponent
174^55 = 1.6990597648061509725749329578093e+123
How would I store this using C (c99 standard)?
int main(){
long long int x = 174^55; //result is 153
printf("%lld
", x);
}
Question&Answers:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…