#include <stdio.h> volatile int i; int main() { int c; for (i = 0; i < 3; i++) { c = i &&& i; printf("%d\n", c); } return 0;...
I would like to enable — literally — ALL of the warnings that GCC has. (You’d think it would be easy…) You’d think -Wall might do the trick, but...
For instance: Bool NullFunc(const struct timespec *when, const char *who) { return TRUE; } In C++ I was able to put a /*...*/ comment around the parameters. But not...
I have a cross platform application and in a few of my functions not all the values passed to functions are utilised. Hence I get a warning from GCC...