C - Find the size of structure

后端 未结 7 850
隐瞒了意图╮
隐瞒了意图╮ 2021-02-10 01:39

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 02:00

    struct  ABC
    
    {
    
    int a;
    
    float b;
    
    char c;
    
    };
    
    
    void main()
    {
    
    struct ABC *ptr=(struct ABC *)0;
    
    ptr++;
    
    printf("Size of structure is: %d",*ptr);
    
    }
    

提交回复
热议问题