3
votes
Freeing in an atexit()
Seeing as malloc()/free() normally involve extensive data structures that exist in userspace, free()ing memory when your program ends can actually be a perfor …
1
vote
Determining realloc() behaviour before calling it
Would storing your string backwards help?
Otherwise...
just malloc() more space than you need, and when you run out of room, copy to a new buffer. A simple technique is to double the space …
2
votes
What do parentheses in a C variable declaration mean?
If you know how to read expressions in C, then you're one step away from reading complicated declarations.
What does
char *p;
really mean? It mean …
1
vote
Memory allocation on Windows C code
VirtualAlloc and friends can give you a bit of an edge if you do have heaps of data to process or if you need to go to the trouble of creating your own memory manager anyway.
Otherwise it's …
3
votes
Making fscanf Ignore Optional Parameter
It would appear to me that the simplest solution is to scanf("%d %s", &num, &word) and then fgets() to eat the rest of the line.
…
1
vote
Stack overflow problem!
Many operating systems dynamically expand the stack as you use more of it. When you start writing to a memory address that's just beyond the stack, the OS assumes your stack has just grown a bit mo …
0
votes
x86 Assembly Keyboard Input
For the purposes of explanation, let's suppose you were writing everything in assembly language yourself, boot loader and kernel (*cough* I've done this).
In real mode, you can mak …
1
vote
Using ‘__progname’ instead of argv[0]
If your program was run using, for instance, a symbolic link, argv[0] will contain the name of that link.
I'm guessing that __progname will contain the name of the actual program file.
…
2
votes
Professional #include contents
Consider actually writing separate documentation. I think man/info pages provide a good example as to what API docs should be like.
…
9
votes
Are memory leaks ever ok?
Many people seem to be under the impression that once you free memory, it's instantly returned to the operating system and can be used by other programs.
This isn't true. Operating systems …
3
votes
Memory leak detectors for C?
Mudflap for gcc! It actually compiles the checks into the executable. Just add
-fmudflap -lmudflap
…
0
votes
C Inline Functions and Memory Use
A function call requires several processor instructions.
You usually need a PUSH instruction for every argument to the function, a CALL instruction to call the function, and often another i …
3
votes
Using sprintf without a manually allocated buffer
"the logging facility makes use of sprintf to format the text that gets written to file"
fprintf() does not impose any size limit. If you can write the text directly to file, d …
2
votes
paste on site, syntax highlighting.
The question is tagged "php" but you "would be only using C/C++"?
A PHP solution is GeSHi.
…
0
votes
Which compiles to faster code: “n * 3” or “n+(n*2)”?
As long as you're using a decent optimising compiler, just write code that's easy for the compiler to understand. This makes it easier for the compiler to perform clever optimisations. …
