Operands of * have incompatible types ....

Started by Blackjack, October 02, 2007, 09:00:00 PM

Previous topic - Next topic

Blackjack

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~ :)

severach

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.

Blackjack

Ah right, I changed log * diam * 2.391 - 2.413   to  log (diam * 2.391 - 2.413) and it works. Thx ^^