English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
所有分類

如果我有一個 string ( ex: ch[] = { \"我要\" } ) 那,我要如何將其中一個印出呢?

2006-07-25 08:51:26 · 2 個解答 · 發問者 國徹 1 in 電腦與網際網路 程式設計

2 個解答

//Power by Microsoft Visual Studio 2005
//可以使用 Dev-C++ 編譯此程式
#include
#include
int main(int argc, char *argv[])
{
//=====START=====//
char str[]="中文";
char word[3]="";
word[0]=str[2];
word[1]=str[3];
word[2]='\0';//字串後面加結束字元
printf("%s\n",word);//顯示「文」
//=====END=====//
system("PAUSE");
return 0;
}

2006-07-25 09:24:21 · answer #1 · answered by Big_John-tw 7 · 0 0

#include

main(void)
{
char string[] = {"這是測試字串"};
int i=0;

for(i=0;i printf("%c%c\n",*(string+i),*(string+i+1));
}
//跟上面那位差不多

2006-07-25 09:46:29 · answer #2 · answered by 3 · 0 0

fedest.com, questions and answers