There are two issues with your code:
With regards to large value, you are printing address rather than actual answer. So remove the &
when you print
The ^
operator in C represents the bitwise XOR. So you can either use the pow
function, (dont forget to put #include <math.h>
) or write your own version of it to get correct results.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…