| 1 | #include<stdio.h> |
| 2 | struct BeforeAdjust{ |
| 3 | char a; |
| 4 | int b; |
| 5 | char c; |
| 6 | short d; |
| 7 | }; |
| 8 | int main() { |
| 9 | printf("BeforeAdjust结构体所占大小为:%d\n",sizeof(struct BeforeAdjust)); |
| 10 | return 0; |
nothing calls this directly
no outgoing calls
no test coverage detected