#include <stdio.h>

struct mystructure{
int mynum;
char myletter;
char mystring[90];
};

int main() {
    struct mystructure s1={18 , 'B' , "jivin adithya" };
    printf("%d %c %s",s1.mynum,s1.myletter, s1.mystring);
    return 0;
}

Embed on website

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