#include <stdio.h>
#include <string.h>
struct person{
int age;
char name[90];
};
int main() {
    struct person s1;
    printf("enter the name of the person: ");
    scanf("%s",&s1.name);
    printf("enter the age of the person: ");
    scanf("%d",&s1.age);
    printf()
    return 0;
}

Embed on website

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