#include<stdio.h>
#include<stdlib.h>
#include<string.h>
int main(){
char str[50]="Apple iPhone 4";
char sttr[]={'i','P','a','d','\0'};
char *pstr="Apple iPod";
int i;
printf("str字串如下:%s\n",str);
printf("sttr字串如下:%s\n",sttr);
/*while(sttr[i]!='\0'){
printf("%c",sttr[i]);
i++;
}
*/
printf("pstr字串如下:%s\n",pstr);
system("pause");
return 0;
}
沒有留言:
張貼留言