摘要:        
#include #include #include struct group_st { int a; char str[80]; }; int myshow(void *p); int mycha(void *p, void *tem); int add_arr(void **p, int *n, int size, void *tem) { if(*n ==...    
阅读全文
 
        
摘要:        
/*1. a 和 &a 有什么区别请写出以下代码的打印结果#include<stdio.h> void main( void ) { int a[5]={1,2,3,4,5}; int *ptr=(int *)(&a+1); printf("%d,%d",*(a+1),*(ptr-1)); retu    
阅读全文