code.club
標題:
有關陣列指標的問題
[打印本頁]
作者:
enter
時間:
2015-4-21 17:47
標題:
有關陣列指標的問題
#include <stdio.h>
void mystrcpy(char *from,char *to);
int main(void){
char str1[80],str2[80];
printf("enter a sentence:\n");
gets(str1);
mystrcpy(str1,str2);
printf("%s %s", str1,str2);
return 0;
}
void mystrcpy(char *from, char *to){
while(*from) *to++=*from++;
//這裡看起來像是直接用str1,str2來++?
*to='\0';
}
#include <stdio.h>
int main(void){
char str1[80],str2[80];
char *p;
printf("Enter a sentence:\n");
gets(str1);
p=str1;
printf("%s %s",str1+1,str1++);
\\str1是字串陣列名稱,不能直接++。但為何另一程式可以?
return 0;
}
歡迎光臨 code.club (https://code.club/)
Powered by Discuz! X3.2