码迷,mamicode.com
首页 > 其他好文 > 详细

C-字符串常量

时间:2014-08-18 22:01:42      阅读:194      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   io   ar   div   log   

相同的字符串常量是共享的,而且是不可写的。

 1 #include <iostream>
 2 using namespace std;
 3 
 4 char *string1, *string2;
 5 
 6 int main() {
 7     string1 = "abcd"; string2 = "abcd";
 8     if(string1 == string2) printf("strings are shared!\n");
 9     else printf("strings are NOT shared!\n");
10     //有可能运行时错误
11     //string1[0] = ‘1‘;
12     if(*string1 == 1) printf("string are writable!\n");
13     else printf("string are NOT writable!\n");
14 
15     return 0;
16 }

输出:

$ ./a.exe
strings are shared!
string are NOT writable!

 

C-字符串常量,布布扣,bubuko.com

C-字符串常量

标签:style   blog   color   os   io   ar   div   log   

原文地址:http://www.cnblogs.com/dracohan/p/3920464.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!