1
vote
How are floating point literals in C interpreted?
You are not clear if you mean floating point literal as part of the source code (for the compiler to parse into architecture-dependent binary representation), or scanned by library functions, such …
1
vote
Strange stack behavior in C
There is no standard that sets how variables are placed on the stack. What happens in the compiler is much more complicated. In your code, the compiler may even choose to completely ignore and supp …
1
vote
Is int x = ‘fooo’ a compiler extension?
Yes, it is standard, but implementation-defined.
In practical experience, it represents the 32-bit integer you get by concatenating bytes 'A', 'B', 'C' and 'D'.
…
11
votes
Using mmap over a file
A few issues:
Avoid mixing high-level I/O (fopen(), fseek()) and some low-level operation like mmap(). Although you can get the low-level file descriptor using fileno(), that is like …
3
votes
Why can I not assign interchangeably with two structs that have identical contents?
struct mystruct
{
int i;
double j;
};
struct mystruct x, y;
struct mystruct z;
If you intend to copy data between them, you must declare them with the same identity …
2
votes
Why does this allow promotion from (char *) to (const char *)?
Check if this clarifies for you:
char * a_mutable = /*...*/;
const char * a_constant = /*...*/;
char **pointer_to_mutable = &a_mutable; /* ok */
const char **pointer_to_cons …
1
vote
How does sched_setaffinity() work?
Where, in the assembly code, are we specifying which core performs that operation?
There is no assembly involved here. Every task (thread) is assigned to a sing …
2
votes
Why is my “cat” function with system calls slower compared to Linux’s “cat”?
Without comparing the source codes, it is difficult to say. If you are comparing your cat with GNU cat, remember that you are comparing a code that is a few hours/days old with a code that evolved …
2
votes
Warning with nftw
Linux, for some reason, still uses SUSv1 for this API, where nfsw() is still considered an extension.
From the Linux manual page …
2
votes
Does qsort demand consistent comparisons or can I use it for shuffling?
No, this won't properly shuffle the array, it will barely move elements around their original locations, with exponential distribution.
…
0
votes
Signal safe use of sem_wait()/sem_post()
Are you sure you are approaching the problem correctly? If you want to wait for a child terminating, you may want to use the waitpid() system call. As you observed, it is not reliable …
1
vote
Does this multiple pipes code in C makes sense?
It will give results, some that are not expected. It is far from a nice solution: It messes with the parent process' standard descriptors, does not recover the standard input, descriptors leak to c …
14
votes
Why sizeof() differs on 64bit cpu ?
Some diagrams to help you see:
32-bit:
+----+----+----+----+----+----+----+----+----+----+----+
| i1 | i2 | i3 | i4 | i5 | i6 | i7 | i8 | i9 | Struct A
+----+----+ …
1
vote
Getting terminal width in C?
#include <stdio.h>
#include <stdlib.h>
#include <termcap.h>
#include <error.h>
static char termbuf[2048];
int main(void)
{
char *termtype = getenv("TERM");
…
0
votes
mixing C and C++ file operations
Even if you manage to convert a FILE* to an std::fstream, that won't work as advertised. The FILE object returned by tmpfile() has a special property that, when close()'d (or when the program termi …
