由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Quant版 - weird programming problem
相关主题
How to define the correlation of two variable X and Y defined in different domain?[合集] 这道c/c++题目怎么理解?
请教个C++的面世题Nine Chapter is shutting down?
[合集] 问一个很弱的C++问题about MatLab programming (转载)
[合集] 请问一道C++题问概率问题
C++ 问题probability question
C++code 20,000 行几乎是一个must ?请教VBA(macro 跟 user defined function)
C++学到什么程度能放到简历上?一个 interatedBM 问题
[合集] 这道C语言问题如何解答?请教一个面试题brainteaser
相关话题的讨论汇总
话题: weird话题: char话题: strlen话题: problem
进入Quant版参与讨论
1 (共1页)
c**********e
发帖数: 2007
1
【 以下文字转载自 Programming 讨论区 】
发信人: careerchange (Stupid), 信区: Programming
标 题: Weird! string length problem.
发信站: BBS 未名空间站 (Sat May 3 21:12:23 2008)
I defined a dynamic array as
char* str= new char[60];
cout << strlen(str) << endl;
The string length is defined to be 60, but the output strlen is 68?
If I use char[10], then the output length is 15?
What is wrong?
n********b
发帖数: 2
2
Are you sure you put '\0' at the end?
j*******2
发帖数: 18
3
If you use sizeof, the result may be different.
1 (共1页)
进入Quant版参与讨论
相关主题
请教一个面试题brainteaserC++ 问题
问个简单的问题C++code 20,000 行几乎是一个must ?
关于ito integral的一个问题C++学到什么程度能放到简历上?
How are the cashflows of ASCOT determined?[合集] 这道C语言问题如何解答?
How to define the correlation of two variable X and Y defined in different domain?[合集] 这道c/c++题目怎么理解?
请教个C++的面世题Nine Chapter is shutting down?
[合集] 问一个很弱的C++问题about MatLab programming (转载)
[合集] 请问一道C++题问概率问题
相关话题的讨论汇总
话题: weird话题: char话题: strlen话题: problem