Click here to Skip to main content
15,887,596 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: How to copy string with NULL Pin
<color>Aljechin 1-Jun-06 20:38
<color>Aljechin 1-Jun-06 20:38 
AnswerRe: How to copy string with NULL Pin
Nemanja Trifunovic1-Jun-06 1:35
Nemanja Trifunovic1-Jun-06 1:35 
GeneralRe: How to copy string with NULL Pin
<color>Aljechin 1-Jun-06 1:47
<color>Aljechin 1-Jun-06 1:47 
GeneralRe: How to copy string with NULL Pin
Cedric Moonen1-Jun-06 1:58
Cedric Moonen1-Jun-06 1:58 
GeneralRe: How to copy string with NULL Pin
<color>Aljechin 1-Jun-06 2:05
<color>Aljechin 1-Jun-06 2:05 
GeneralRe: How to copy string with NULL Pin
Cedric Moonen1-Jun-06 2:09
Cedric Moonen1-Jun-06 2:09 
GeneralRe: How to copy string with NULL Pin
<color>Aljechin 1-Jun-06 20:47
<color>Aljechin 1-Jun-06 20:47 
GeneralRe: How to copy string with NULL Pin
Nemanja Trifunovic1-Jun-06 2:26
Nemanja Trifunovic1-Jun-06 2:26 
Aljechin wrote:
char szSource[23] = {"Before\0After"};
char szDest[23];

ptr = memcpy(szDest,szSource,22);
printf("%s %d",szDest,strlen(szDest));


<br />
char szSource[23] = {"Before\0After"};<br />
char szDest[23];<br />
<br />
std::copy(szSource, szSource + 23, szDest);<br />


However, as Cedric already noted, don't expect that printf and strlen show the whole thing if you have embedded zeroes.



My programming blahblahblah blog. If you ever find anything useful here, please let me know to remove it.
GeneralRe: How to copy string with NULL Pin
<color>Aljechin 1-Jun-06 20:41
<color>Aljechin 1-Jun-06 20:41 
QuestionGet file size in mega bytes Pin
big_denny_2001-Jun-06 0:27
big_denny_2001-Jun-06 0:27 
AnswerRe: Get file size in mega bytes Pin
ThatsAlok1-Jun-06 0:32
ThatsAlok1-Jun-06 0:32 
AnswerRe: Get file size in mega bytes Pin
Hamid_RT1-Jun-06 1:15
Hamid_RT1-Jun-06 1:15 
GeneralRe: Get file size in mega bytes Pin
ThatsAlok1-Jun-06 1:54
ThatsAlok1-Jun-06 1:54 
GeneralRe: Get file size in mega bytes Pin
ThatsAlok1-Jun-06 1:55
ThatsAlok1-Jun-06 1:55 
GeneralRe: Get file size in mega bytes Pin
Hamid_RT1-Jun-06 2:12
Hamid_RT1-Jun-06 2:12 
GeneralRe: Get file size in mega bytes Pin
ThatsAlok1-Jun-06 2:40
ThatsAlok1-Jun-06 2:40 
AnswerRe: Get file size in mega bytes Pin
Sarath C1-Jun-06 1:02
Sarath C1-Jun-06 1:02 
GeneralRe: Get file size in mega bytes Pin
David Crow1-Jun-06 3:39
David Crow1-Jun-06 3:39 
AnswerRe: Get file size in mega bytes Pin
Nibu babu thomas1-Jun-06 1:06
Nibu babu thomas1-Jun-06 1:06 
Questionhow to use IWebBrowser2::NavigateError? Pin
szcococut31-May-06 23:59
szcococut31-May-06 23:59 
AnswerRe: how to use IWebBrowser2::NavigateError? Pin
szcococut1-Jun-06 0:33
szcococut1-Jun-06 0:33 
QuestionCString????-newbie Pin
antonaras31-May-06 23:53
antonaras31-May-06 23:53 
AnswerRe: CString????-newbie Pin
toxcct31-May-06 23:56
toxcct31-May-06 23:56 
AnswerRe: CString????-newbie Pin
Sarath C31-May-06 23:57
Sarath C31-May-06 23:57 
AnswerRe: CString????-newbie Pin
Sarath C1-Jun-06 0:01
Sarath C1-Jun-06 0:01 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.