So, I keep getting this error in my program.. can't find anything wrong :-\
Line:
bmassab = 1.019 * pow (e, (log * diam * 2.391 - 2.413));
Error:
error #2168: Operands of * have incompatible types 'double __cdecl function(double) *' and 'double'.
Thanks~ :)
Move your cursor to log and hit F1. log() is a function and it looks like you are trying to use it as a variable.
Ah right, I changed log * diam * 2.391 - 2.413 to log (diam * 2.391 - 2.413) and it works. Thx ^^