#include <stdio.h>

typedef struct {
    char name[20];
    int id;
} user;
void show(user u)
{
    printf("%s", u.name);
}
int main() {
    user user1 = {"aissam", 65879};
    user user2 = {"ayman", 46876};
    show(user2);
    return 0;
}

Embed on website

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