如何使用指针算术打印结构的特定成员?我有一个有 2 个成员的结构。我想j
通过操纵指向该结构的指针的内存来打印出成员。
#include <stdio.h>
#include <conio.h>
typedef struct ASD
{
int i;
int j;
}asd;
void main (void)
{
asd test;
asd * ptr;
test.i = 100;
test.j = 200;
ptr = &test;
printf("%d",*(ptr +1));
_getch();
}