#include <stdio.h>

typedef struct{
    int num;
} data;

int main() {
    data d1;
    d1.num=6;
    printf("%d",d1.num);
}

Embed on website

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