CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4

Threaded View

  1. #1
    Join Date
    Dec 2006
    Posts
    13

    Setting char value

    All, I have attached a snapshot of the issues I am dealing with.

    const char CR = '\13';
    const char LF = '\10';

    const char CR2 = '\15';
    const char LF2 = '\12';

    In the locals watch window it shows that the CR value is 11 instead of 13, and my line-feed LF has a value of 8 instead of 10. If I add 2 to the value as CR2 and LF2 show, then the watch windows shows them as 13 and 10.

    What am I doing wrong.
    C++ Express 2010

    Keith
    Attached Images Attached Images  

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured