#include <stdio.h>
struct myStruct{
int mynum;
char myletter;
};
int main(){
struct myStruct s1;
s1.mynum=13;
s1.myletter='B';
printf("My Number: %d\n",s1.mynum);
printf("My Letter:%c\n ",s1.myletter);
}
To embed this project on your website, copy the following code and paste it into your website's HTML: