printf("%c",*p++); //先取值再把p指標位移. //印0值不變再指到s[1]. printf("%c",*(p++));//等同*p++. //印1值不變再指到s[2]. printf("%c",(*p)++);//先取值再把值+1.
確定! 回上一頁