代码中有一个名称为结构体补齐算法
- #include <stdio.h>
- int main()
- {
- char c = 'A';
-
- int a = 10;
-
- printf("a=%p\n", &a);
- printf("c=%p\n", &c);
-
-
- /*
- struct Student
- {
- int age;// 4
- int score;// 4
-
- char *name;//8
- };
-
- struct Student stus[3];
-
-
- printf("%ld\n", sizeof(stus));*/
-
- return 0;
- }
复制代码
这个代码是要表示什么知识点呢? |
|