摘要: What would happen if we compile and run this code ?void main(){ // Option A. char str1[] = "example"; str1[1] = 'a'; // Option B. ... 阅读全文
posted @ 2014-07-16 23:18 Sparkles 阅读(114) 评论(0) 推荐(0) 编辑
摘要: Size of Data TypesAlways use sizeof() to get the size of types(sizeof(char), sizeof(short), sizeof(int)...)Do not depend on the order of evaluation in... 阅读全文
posted @ 2014-07-16 13:37 Sparkles 阅读(87) 评论(0) 推荐(0) 编辑