Tagged Questions

4
votes
1answer
51 views

How does the C# visual studio compiler treat struct/NULL comparisons?

We just ran across some bad code like this in our c#.net 4 codebase DateTime myDate = someValue; If (myDate==Null) Do Something It occurred to us that this condition will never occur. How ...
4
votes
3answers
119 views

Different behavior of compilers with array allocation

I recently found a interesting behaviour of g++ when compared with MSVC++ 2008. Consider this tiny program: #include <cstdlib> const int ARR_LENGTH = 512; void doSomething( int iLen ); int ...
3
votes
5answers
607 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 ...