#include <stdio.h>
#include <math.h>

struct point
{
    int xpos;
    int ypos;
};

struct person
{
    char name[20];
    char phineNum[20];
    int age;
};

int main()
{
    struct point pos={10,20};
    struct person man={"이승기", "010-1212-0001", 21};

    printf("%p %p \n",&pos, &pos.xpos);
    printf("%p %p \n",&man, &man.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: