Tagged Questions
3
votes
3answers
169 views
C corner case and trap
I am surprised why this works?
short main [] ={};
This is the only content in the file. It compiles correctly on gcc. But when i run it prints segmentation fault. When i rename main, compiler ...
3
votes
3answers
171 views
Determining whether compiling on Windows or other system
Im currently developing a cross-platform C application.
Is there any compiler macro which is defined only during compilation on Windows, so I can #ifdef some Windows specific #includes?
Typical ...
2
votes
2answers
162 views
Is a C .lib file platform specific?
I'm trying to use an API for a proprietary interface device on an embedded system (Freescale HCS08), and the provided files include headers (.h) and libraries (.lib). The header compiles fine with ...