棘手的结构指针迭代而不给出转储
结构指针不给转储
#include <iostream>
#include <malloc.h>
#include <conio.h>
using namespace std;
typedef struct
{
int k;
}struct1;
typedef struct
{
int i;
char *ptr;
int len;
struct1 otherinstance;
}struct2;
int func(struct2 *instance,int y)
{
int res = 0,i=0;
for(i=0;i<y;i++)
{
instance[i].otherinstance.k = 10;
printf("Data = %d\n",instance[i].otherinstance.k);
}
return res;
}
int main()
{
int x =3;
struct2 *instance1 = (struct2*)malloc(sizeof(struct2));
func(instance1,3);
cin.get();
return 0;
}
/*
Output:
Data = 10
Data = 10
Data = 10
*/
请分析上面的代码。我有一个函数名“func”,它接受指向结构的指针。在函数“func”中,我正在遍历结构数组:“应该给转储”。
工具:dev c++ windows