about_me.c
 1#include <stdio.h>
 2
 3typedef struct Developer {
 4    char *name;
 5    char *location;
 6    char **languages;
 7} Developer;
 8
 9int main(void) {
10    Developer me = {
11        .name = "Abdellah El Morabit",
12        .location = "Brussels, Belgium",
13        .languages = (char*[]){"C", "Go", "Scala"}
14    };
15    printf("Systems enthusiast & student\n");
16    return 0;
17}