如果s
是一個字符串(說"thisisthe"
),如何將第一個字節存儲到另一個字符串s2
?將字符串的第一個字節存儲到另一個字符串中:LZW壓縮算法
#include <stdio.h>
int main() {
char s[]="thisisthe";
char s1=s[0]; // Store the first byte of s as a char.
char s2[]=s[1]; // store the second byte of s as a string.
printf("%s\n",s2);
return 0;
}
你能避免肘粗體字?謝謝。 – 2014-09-21 16:12:02