这个打印100:
int j=2; int i= pow(10,2); printf("%d\n", i);
这个打印99:
int j=2; int i= pow(10,j); printf("%d\n", i);
为什么?
c floating-point pow
c ×1
floating-point ×1
pow ×1