Problem with function definitions

Started by Kaljj, August 17, 2009, 02:23:18 PM

Previous topic - Next topic

Kaljj

Hello,
I need help.
I write a functions with this definition.


double GetDistance (double StartBreite, double StartLaenge)
{
double n,m,d;
...
...
return n;
}


It's work ;D

Now I add a new parameter

double GetDistance (double StartBreite, double StartLaenge, double ZielBreite)
{
double n,m,d;
...
...
return n;
}


Don't Work ? :-[

Why and what must I do ?  ???

Thanks Kaljj

JohnF

Do you get any errors when compiling?

John

Kaljj

Hello,

a very short anwser:

No


Thanks

Kaljj

JohnF

Please supply a working (or not working) complete example.

John

Kaljj

Hi John,

my file's.

the comment Lines are running.


JohnF

Ok, calling GetDistance (52.517, 13.10, 35.10); gives a result of

8988.959961

What's happening where you are?

John

Kaljj

Hi John,

a little bit more info.

I use a HTC - Handy with Win Mobile 6.0.
I create with the Pelle C Version 6.0 a pocket pc application wizard a simple "Hello" - Projekt.
I make my changes.

If I run the Programm with two Parameters on the Pocket PC i have a Messagebox.

If I run the Programm with three Parameters on the Pocket PC i have no Messagebox (no reaction).

Thanks
Kaljj

JohnF

Well I've done all I can, you need someone that can test it and give advice on a pocket pc.

John

Kaljj

Thank You John.

I hope there is everyone who can help me.

Kaljj

ml

Hello,

I faced the same problem, see forum.pellesc.de/index.php?topic=3000.msg11407#msg11407 :'(
It's a bug inside the ARM code generator of V6.00 when using double variables. Switched back to V5 where it works fine.

ml

Kaljj

Thank you ml,

it's a very good information.

;D

Kaljj