#include
#include
#include
void
zifuchuangdingyi()
;//好一點 只用寫個數 !!!前面個數比字串個數多乙個 因為字串預設有乙個 \0結尾
char str2[6]
="jiang"
;//更好 個數都不寫
char str3=
"jianglongjie"
;//for迴圈輸出 把單個字元輸出
for(
int i=
0;i<
sizeof
(str3)
/sizeof
(str3[0]
);i++
)printf
("\n");
//字串輸出
//字串輸出 字串必須\0結尾 不然會有亂碼
printf
("字串輸出");
printf
("\n");
printf
("%s"
,str1)
;printf
("\n");
printf
("%s"
,str3)
;printf
("\n");
// puts 會自動換行
puts
(str1)
;puts
(str2)
;puts
(str3)
;printf
("\n");
}void
zifuchuangcucun()
;char str=
"jianglongjies dashuaige"
;printf
("陣列的大小是%d\n"
,sizeof
(a))
;printf
("陣列的元素大小是%d\n"
,sizeof
(a[0])
);printf
("陣列的元素大小是%d\n"
,sizeof
(int))
;printf
("陣列的元素個數是%d\n"
,sizeof
(a)/
sizeof
(a[0])
);printf
("字串的大小是%d\n"
,sizeof
(str));
printf
("字串的元素大小是%d\n"
,sizeof
(str[0]
));printf
("字串的元素大小是%d\n"
,sizeof
(char))
;printf
("字串的元素個數是%d\n"
,sizeof
(str)
/sizeof
(str[0]
));printf
("\n");
}void
zifustrlenandsizeof()
void
zifuhanshu()
void
myputs
(char
*p)}
intmygets
(char
*p)else
while
(*p =
getchar()
)}}void
mymemset
(char
*p,char c,
int size)
}void
zifupi()
intmain()
iOS學習008字串
20150617字串,可變字串 main.m oc 字串 created by jzq mac on 15 6 17.import 結構體的關鍵字struct,是乙個整體,由不同資料型別組成的整體 typedef struct person int age char name person int ...
python學習 14 字串
2 查詢和替換 7個方法 3 大小寫轉換 5個方法 4 文字對齊 3個方法 5 去除空白字元 3 6 拆分和連線 5 字串的切片 可以使用索引獲取乙個字串中指定位置的字元,索引計數從0開始 也可以使用for迴圈遍歷字串中每乙個字元 大多數程式語言都是用 來定義字串 string hello pyth...
php學習3 字串
1,字串變數可以使用單引號宣告也可以使用雙引號宣告 2,如果乙個字串中包含變數,這是使用雙引號宣告的變數會輸出變數內容,使用單引號則輸出變數名本身 3,heredoc,在heredoc中可以直接引用php中的變數,同時為了容易區分可以使用花括號將該變數括起來 4,轉義符號是 5,字串連線可以使用點號...