字串與指標

2022-06-01 14:42:07 字數 583 閱讀 2220

定義乙個字元陣列並初始化,然後輸出其中字串

#include using

namespace

std;

//指向整型的指標

intmain();

for(int i=0;i<11;i++)

cout

<"";

return0;

}

定義乙個字串變數並初始化,輸出

#include using

namespace

std;

//指向整型的指標

intmain()

指向字串的字元指標

#include using

namespace

std;

//指向字串的指標

intmain()

將字串str1複製為字串str2

#include #include 

using

namespace

std;

//指向字串的指標

intmain()

字元指標與字串

例項1 include using namespace std int main 執行結果 error 例項2 include using namespace std int main 執行結果 helloworld例項3 include using namespace std int main 執...

字串與指標

字元 0 和 0 的區別字元 0 對應的ascii碼為十六進製制30 而 0 即為ascii碼中的0,其對應字元空字元nul。char c 0 char c 0 nul char c 0 char c 48 最典型如memset函式 void memset void buffer,int ch,si...

字串與指標

printf的第二個引數的型別是由 第乙個引數format決定的。當format為 s時,第二個引數就是乙個位址,printf將位址上的值輸出到stdout。當format為 d時,第二個引數就是乙個int型的變數,printf將變數上值輸出到stdout。1 字串的表示形式 在c語言中,我們可以用...