#include <stdio.h>
#include <string.h>
struct mystructure{
int mynum;
char myletter;
char mystring[30];
}
;
int main()
{
struct mystructure s1={24,'b',"hmmm"};
struct mystructure s2;
s2=s1;
printf("%d %c %s",s2.mynum,s2.myletter,s2.mystring);
}
To embed this project on your website, copy the following code and paste it into your website's HTML: