1
vote
How to structure #includes in C
The .h file should define the public interface (aka the api) to the functions in the .c file.
If the interface of file1 uses the interface of file2 then #include file2.h in file1.h
…
3
votes
Testing pointers for validity (C/C++)
Firstly, I don't see any point in trying to protect yourself from the caller deliberately trying to cause a crash. They could easily do this by trying to access through an invalid pointer themselve …
4
votes
Does the C standard define a stack overflow behavior?
The answers here are correct in stating that it is nothing to do with the c standard but your statement that "Apart from terminating the process, it doesn't seem like there's a whole lot that can b …
1
vote
Macro-producing macros in C?
The problem is that you cannot have #define in a macro - you can pass it though.
#define make_macro(f, d) d f(...) f##_fn(f##_info, __VA_ARGS__)
make_macro(name1, #define)
make_mac …
1
vote
When to use assembly language to debug a c/c++ program?
In some circumstances you have no choice but to revert to assembler. If your system crashes and all you have is a core dump or stack trace with few symbols then staring at the high level source cod …
1
vote
Efficient (cycles wise) algorithm to compute modulo 25?
Possibly not the fastest but reasonably efficient. I haven't got time to test, but use a look up table of (powers of 2) * 25 up to the maximum range/2. Then do a loop. E.g. range up to 3199 needs 7 …
4
votes
Printing name and value of a define
As long as you are willing to put up with the fact that SOMESTRING=SOMESTRING indicates that SOMESTRING has not been defined (view it as the token has not been redefined!?!), then the following sho …
2
votes
how to load data from file to string array?
There are so many problems with that code:
'const' is a reserved word - use a
different name.
The declaration of the file is wrong.
You haven't told the program what …
5
votes
C memory management error?
You are attempting to free the middle of your array.
Fragment *fragment = &frags[i];
...
...
/* to do : free fragment */
free (fragment);
fragment = NULL;
…
4
votes
clear code for counting from 0 to 255 using 8-bit datatype
What's wrong with the obvious?
i = 255;
do {
work();
} while (i--);
…
1
vote
How can I test my driver is loaded, and then access my driver functions from the linux kernel?
The other possibility is to use EXPORT_SYMBOL(functionCall); in your module which will make your function appear in the kernel symbol table. You can then use find_symbol("functio …
5
votes
x86 Assembly: What’s the main prologue and epilogue?
The initialisation isn't generated by the c compiler, it is part of the c library (which makes it easier to tailor for each OS/processor).
The code in question is normally very simple on wi …
0
votes
C Prototype scope
Two - let's make that three - obvious reasons for having parameter names in function prototypes:
Names indicate the purpose of each parameter.
Names let you refer to the para …
1
vote
Can you #define a comment in C?
The standard way is to use
#ifndef DEBUG
#define printd(fmt, ...) do { } while(0)
#else
#define printd(fmt, ...) printf(fmt, __VA_ARGS__)
#endif
That way …
2
votes
Is writing to a socket an arbitrary limitation of the sendfile() syscall?
I seem to remember that it was a limitation introduced in early Linux 2.6 (2.4 didn't have the limitation).
Since 2.6.17 Linux has the splice() system call which is similar; more flexible, …
