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

C String

时间:2014-07-18 23:24:50      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   color   os   art   

What would happen if we compile and run this code ?

bubuko.com,布布扣
void main(){    
    // Option A.

    char str1[] = "example"; 

    str1[1] = a; 

    // Option B. 

    char* str2 = "example"; 

    str2[1] = a;
}
View Code

This code compiles but option B will produce a run time error.

http://www.dev102.com/2008/04/28/a-programming-job-interview-challenge/

C String,布布扣,bubuko.com

C String

标签:style   blog   http   color   os   art   

原文地址:http://www.cnblogs.com/sparkles/p/3849960.html

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