??????????????????????
????????????????????????????????????????
????????????????????????????????????????????????洢???????С??????????????
#include<stdio.h>
#include<string.h>
void main()
{
int i;
char b[]={"wustrive_2008"};
char *a[1];
*a=b; for(i=0;i<strlen(b);i++) printf("%c"??*(a[0]+i)); printf("/n");
}
???????н????wustrive_2008
???????????strlen??strlen?string????????????????????#include??
?????????????????д???strlen????????????????????ó???????
#include<stdio.h>
int strlen(char *s)
{
char *p=s;
while(*p!='/0')
p++;
return p-s;
}
void main()
{
int i;
char b[]={"wustrive_2008"}; char *a[1];
*a=b; for(i=0;i<strlen(b);
i++) printf("%c"??*(a[0]+i)); printf("/n");
}
??????????н??????????????????????????????????????strlen????????????????????????????????????????????????д?????????????????????????д??
????????????????????????????÷??????????a???a[1]???????????????????????????
???????????????????????????????????????????????????????????????????????????????????????????
??????????????
?????????????????int a[5][10]; int *b[5];
??????????????a[3][4]??b[3][4]????????int??????????á???a????????????????飬????????50??int????????洢?????b?????????????5???????????г???????????????????????????????b?????????????????10?????????飬?????????????????50??int????????洢??????5?????洢?????????????????????????????????г????????????????b????????????????????10????????????
??????????????
??????C?????У???????????????????????????????????????????????????????????????????У?????????????????????????????
????????????????????????????????????????
????int (p)(void ??void *)
??????????p????????????????ú???????????void????????????????????int?????if((p)(v[i]??v[left])<0)?У?p????ú???????????μ??p???????????????p????????????????д????????int p(void ??void )?????p????????????ú??????????int????????
??????????????????????
????int *f????; //f???????????????????????int????????
????int (*pf)(); //pf????????????????ú??????????int????????