Pelles C forum

C language => Beginner questions => Topic started by: Blackjack on October 02, 2007, 09:00:00 PM

Title: Operands of * have incompatible types ....
Post by: Blackjack on October 02, 2007, 09:00:00 PM
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~ :)
Title: Re: Operands of * have incompatible types ....
Post by: severach on October 03, 2007, 03:32:25 AM
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.
Title: Re: Operands of * have incompatible types ....
Post by: Blackjack on October 03, 2007, 03:36:55 AM
Ah right, I changed log * diam * 2.391 - 2.413   to  log (diam * 2.391 - 2.413) and it works. Thx ^^