Quick actions

cmd+k|ctrl+k

Navigation

Languages

Sequence point

Snippet info

Language

C

Visibility

public

Author

evine

Created

2017-07-13T19:30:47Z

Updated

2017-07-13T19:32:25Z

#include <stdio.h>

typedef struct{
    int a;
    int b;
}Thing;

int f(char *s)
{
    printf("%s ", s);
    return 0;
}

int main(void) {
    Thing t = {
        .b = f("first"),
        .a = f("second"),
    };
    
    return 0;
}
INFO