例34:c語音實現將字串a複製為b,然後輸出b,要求使用指標。
源**演示:
#include
//標頭檔案
intmain()
//主函式
*(b+i)
='\0'
;//賦值
printf
("字串a是:%s\n"
,a);
//輸出原來的
printf
("單個輸出字元b:");
//提公升語句
for(i=
0;b[i]
!='\0'
;i++
)//for迴圈
printf
("\n");
//換行
return0;
//主函式返回值為0
}
編譯執行結果如下:
字串a是:i love you
單個輸出字元b:i love you
----
----
----
----
----
----
----
----
process exited after 1.745 seconds with return value 0
請按任意鍵繼續.
..
c語言用指標字串a複製為b並輸出 指標 ,將字串a複製給字串b
將字串a複製給字串b 如下 將字串a複製給b include intmain p2 0 記得給p2加上 0 for b i 0 i 做完之後 又想到了幾個問題 1 p2被覆蓋掉了嗎?那在此之前它是怎麼傳給陣列b的?2,能不能用指標變數輸出?改改動動試試後 發現這樣也可以 include intmai...
C語言 複製字串
include define length 128 char str copy char p,const char s return t int main void 也可將str copy 函式 char str copy char p,const char s return t 換成如下函式 ch...
C語言 字串 指標
字串 1.字串 jack j a c k 0 用陣列儲存字串 char name 10 jack printf name 2.字串的一些定義 都是字串 0的ascii碼值是0 char name 8 it char name2 8 char name3 8 0的ask碼是0 char name4 8...