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

struct complex{
    int real;
    int img;
};

int main() {
    struct complex number1={5,8};
    struct complex *ptr=&number1;
    printf("real part=%d",ptr->real);
    printf("img part=%d",ptr->img);
    return 0;
}

Embed on website

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