Tagged Questions
0
votes
3answers
54 views
Strict comparaison between char and int
I would like to know if it was possible to compare an integer and a char.
Something that could be the "===" from Javascript.
Because
'a' == 97
Will ouput
1
Edit : I would like something like
...
0
votes
3answers
140 views
Code Fragment: is this pure C?
I've got following code fragment and I want to know if it is pure C or it contains some C++ elements. This question stems from the fact that I think it is only C, but some compilers don't accept the ...
14
votes
2answers
761 views
GCC options for strictest C code?
What GCC options should be set to have GCC as strict as possible? (and I do mean as strict as possible) I'm writing in C89 and want my code to be ANSI/ISO compliant.
3
votes
3answers
559 views
Splint warning “Statement has no effect” due to function pointer
I'm trying to check a C program with Splint (in strict mode). I annotated the source code with semantic comments to help Splint understand my program. Everything was fine, but I just can't get rid of ...
9
votes
5answers
309 views
Strict ISO C Conformance Test
I am currently working on a C project that needs to be fairly portable among different building environments. The project targets POSIX-compliant systems on a hosted C environment.
One way to achieve ...