C - Find the size of structure

后端 未结 7 969
再見小時候
再見小時候 2021-02-10 01:43

I was asked this as interview question. Couldn\'t answer.

Write a C program to find size of structure without using the sizeof operator.

7条回答
  •  醉梦人生
    2021-02-10 01:50

    struct ABC
    {
        int a, b[3];
        int c;
        float d;
        char e, f[2];
    };
    int main()
    {
        struct ABC *ptr=(struct ABC *)0;
        clrscr();
        ptr++;
        printf("Size of structure is: %d",ptr);
        return 0;
    }
    

提交回复
热议问题