#include <stdio.h>
struct node_t {
    struct node_t* next_node;
    char label;
};
int main () {
    printf("Expected size: %lu\n", sizeof(struct node_t*) + sizeof(char));
    printf("sizeof(struct node_t): %lu\n", sizeof(struct node_t));
    return 0;
}