Tagged Questions

3
votes
7answers
2k views

Can I compute pow(10,x) at compile-time in c?

Is it possible to compute pow(10,x) at compile time? I've got a processor without floating point support and slow integer division. I'm trying to perform as many calculations as possible at ...
3
votes
5answers
592 views

initialize a variable statically (at compile time)

1) I've got many constants in my C algo. 2) my code works both in floating-point and fixed-point. Right now, these constants are initialized by a function, float2fixed, whereby in floating-point it ...
0
votes
5answers
155 views

hexadecimal constant in c is unsigned even though i used the L suffix

I know this is a simple question but I'm confused. I have a fairly typical gcc warning that's usually easy to fix: warning: comparison between signed and unsigned integer expressions Whenever I ...