#include <stddef.h>
#include <stdio.h>
typedef struct{
int s1;
int s2;
}Struct;
int test()
{
return 0;
}
int test2()
{
return 0;
}
int main()
{
int array[3] = {1,2,3};
Struct stru = {1,2};
Struct sru2 = stru;
int a = 5;
void* p = NULL;
p = array;
printf("%x\n", p);
p = test;
printf("%x\n", p);
p = &stru;
printf("%x\n", p);
p = &a;
printf("%x\n", p);
return 0;
}
#include <stddef.h>
#include <stdio.h>
typedef st