#include <stdio.h>

struct new {
    char name[20];
    char id[4];
};

int main() {
    struct new *ptr = (struct new*)0x83; // Corrected typo conersion

    printf("%s\n", ptr->name);
    printf("%s\n", ptr->id);

    return 0;
}

Embed on website

To embed this program on your website, copy the following code and paste it into your website's HTML: