Name:
Anonymous
2012-08-25 0:34
when i use pow(x,y) in C, is such a thing calculated in constant or linear runtime?
Name:
Anonymous
2012-08-25 2:37
pow(x, y) is a function call (or a macro but usually not), so anything can happen. If you want to know exactly what's going on, get a debugger.