Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
125 views

Compound literals and function-like macros: bug in gcc or the C standard?

In C99, we have compound literals, and they can be passed to functions as in: f((int[2]){ 1, 2 }); However, if f is not a function but rather a function-like macro, gcc barfs on this due to the ...
3
votes
1answer
542 views

Nested structures/arrays initialization

I have a structure that contains an arrays of another structure, it looks something like this: typedef struct bla Bla; typedef struct point Point; struct point { int x, y; }; struct bla { ...
2
votes
3answers
128 views

Difference between cast used in Compound literals and that done on a pointer variable?

Consider the following code: int main() { int *p; ++((int){5}); //compile without err/warning &((int){5}); //compile without err/warning ++((char *)p); //Compile-time ...
0
votes
5answers
50 views

assigning a compound literal to an array pointer gives both the expected result and rubbish at the same place and time?

#include <stdio.h> int main(void) { int a[5], *p, i; p = a; p = (int []){1, 2, 3, 4, 5}; for (i = 0; i < 5; i++, p++) { printf("%d == %d\n", *p, a[i]); } ...