return 0;
}作者: enter 時間: 2015-1-24 21:27
#include <stdio.h>
int main(void)
{
//char *str[]={"this is a book!","good morning.","how are you?","you're welcome!"};
char str[][30]={"This is a book!","Good morning.","How are you?","You're welcome!"};
char *p,**q,***r;
//p=*str;//前面是*str[]的型態,則這裡要寫成p=*str。
p=str;//要前面是str[][]的型態,這裡才能直接p=str。
q=&p;
r=&q;