代码拉取完成,页面将自动刷新
#define _CRT_SECURE_NO_WARNINGS 1
#include <stdio.h>
#include <stddef.h>
struct address {
char name[50];
char street[50];
int phone;
};
struct stu {
char name[20];
char sex[10];
int age;
};
#define MyOffestof(structName, memberName) (size_t)&(((structName *)0)->memberName)
int main()
{
printf("%d\n", MyOffestof(struct stu, age));
printf("%d\n", MyOffestof(struct address, phone));
return 0;
}
//#include <stddef.h>
//#include <stdio.h>
//
//struct address {
// char name[50];
// char street[50];
// int phone;
//};
//
//int main()
//{
// printf("address 结构中的 name 偏移 = %d 字节。\n",
// offsetof(struct address, name));
//
// printf("address 结构中的 street 偏移 = %d 字节。\n",
// offsetof(struct address, street));
//
// printf("address 结构中的 phone 偏移 = %d 字节。\n",
// offsetof(struct address, phone));
//
// return(0);
//}
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。