Tagged Questions
6
votes
3answers
130 views
Undefined behavior: when attempting to access the result of function call
The following compiles and prints "string" as an output.
#include <stdio.h>
struct S { int x; char c[7]; };
struct S bar() {
struct S s = {42, "string"};
return s;
}
int main()
{
...
2
votes
2answers
50 views
Does this invoke undefined behavior with linkage in C?
From section (6.2.2/7) C99 Standard
7. If, within a translation unit, the same identifier appears with
both internal and external linkage, the behavior is undefined.
While the following ...
5
votes
1answer
247 views
C99: Is it possible to portably determine if two pointers point within the same aggregate?
In c99, my understanding is that comparing two pointers which do not point within the same aggregate results in undefined behavior. Given an aggregate A, a pointer p_good which is known to point ...
4
votes
1answer
81 views
On a platform where NULL is represented as 0, has a compiler ever generated unexpected code for NULL <= p
In C99, equality == does not seem ever to be undefined. It can produce 1 by accident if you apply it to invalid addresses (for instance &x + 1 == &y may be true by accident). It does not ...
19
votes
5answers
2k views
How to implement `memmove` in standard C without an intermediate copy?
From the man page on my system:
void *memmove(void *dst, const void *src, size_t len);
DESCRIPTION
The memmove() function copies len bytes from string src to string dst.
...
43
votes
3answers
769 views
In C99, is f()+g() undefined or merely unspecified?
I used to think that in C99, even if the side-effects of functions f and g interfered, and although the expression f() + g() does not contain a sequence point, f and g would contain some, so the ...
4
votes
1answer
712 views
Implicit declaration in C
Does the following program invoke Undefined Behaviour in C?
int main()
{
printf("Printf asking: Where is my declaration ?");
}
In the above program there is an implicit declaration of printf(), ...
1
vote
3answers
279 views
Order of assignment evaluation (Have I found my first compiler bug?)
This code has an interesting bug:
some_struct struct_array1[10] = {0};
some_struct struct_array2[10] = {0}
int i;
for (i = 0;
i < sizeof(struct_array1) / sizeof(struct_array1[0]);
...
