返回列表 發帖

陣列 (二)- 字元陣列與字串 1

本帖最後由 周政輝 於 2018-2-10 14:20 編輯

在C++中,字串可運用字元陣列或字串變數來處理。在利用字元陣列宣告字串的時候要注意它的長度,以免位數不夠造成程式錯誤。事實上,每個字串後面都有一個 '\0' 的字元,例如 "tw" 字串,事實上總共用了 3 Bytes,若為中文字,則每個字要佔兩個字元,這一點要特別注意。
#include<iostream>
#include<cstdlib>
using namespace std;
int main()
{
   char chr[]="What is your name?";
   cout<< chr << endl;
   for(int i=0;i<=17;i++)
   {
      cout<<chr;
   }
    system("pause");
    return 0;   
}

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

此帖僅作者可見

TOP

返回列表