#include <stdio.h>
#include <string.h>
struct mystructure{
int mynum;
char myletter;
char mystring[90];
};

int main() {
    struct mystructure s1;
    strcpy(s1.mystring, "joy");
    printf("my string is : %s", 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: