字串
char s[] 是個char array,含12個byte(包含結尾\0)
char *s 是一個 pointer 指向 char,s 指向 "Hello World" 這個string literal的起始記憶體位置
範例:
結果為:
size of s1: 12
size of s2: 4
結論
char *s速度較快
Last updated
char s[] 是個char array,含12個byte(包含結尾\0)
char *s 是一個 pointer 指向 char,s 指向 "Hello World" 這個string literal的起始記憶體位置
結果為:
size of s1: 12
size of s2: 4
char *s速度較快
Last updated