#include <stdio.h>
#include <string.h>

struct Employee{
char name[90];
int age;
char department[90];
char city[90];
};
int main() {
    struct Employee s1={"jivin", 18, "mechanical","coimbatore"};
    struct Employee s2={"avinash",18,"mechanical","vellore"};
    printf("%s", s1.name);
    return 0;
}

Embed on website

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