Changes between Version 15 and Version 16 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/String


Ignore:
Timestamp:
03/12/25 07:52:26 (3 weeks ago)
Author:
Don Wilson
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Docs/Prog/Manual/ApplicationLibraries/lib825ev/String

    v15 v16  
    11= String Functions =
    22The 825 can be programmed using C/C++ character array strings and standard C library string functions such as:
    3 {{{
     3{{{#!c++
    44char szMsg[10];
    55char szID[10];
     
    1414
    1515snprintf is a safer alternative to sprintf. snprintf has an additional parameter. The second parameter specifies the size of the buffer. The snprintf function will not exceed the specified buffer size.
    16 {{{
     16{{{#!c++
    1717char szMsg[10];
    1818char szID[10];
     
    2727825 applications may also be compiled using the newer C++ string type: std::string. Using std::string does not require as much diligence from the programmer. The string will automatically allocate more memory and grow if needed by an assignment. The operations are also more like the BASIC language so this is helpful for programmers who are not as skilled in C/C++.
    2828
    29 {{{
     29{{{#!c++
    3030string strMsg;
    3131string strID;