Changes between Version 15 and Version 16 of Docs/Prog/Manual/ApplicationLibraries/lib825ev/String
- Timestamp:
- 03/12/25 07:52:26 (3 weeks ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Docs/Prog/Manual/ApplicationLibraries/lib825ev/String
v15 v16 1 1 = String Functions = 2 2 The 825 can be programmed using C/C++ character array strings and standard C library string functions such as: 3 {{{ 3 {{{#!c++ 4 4 char szMsg[10]; 5 5 char szID[10]; … … 14 14 15 15 snprintf 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++ 17 17 char szMsg[10]; 18 18 char szID[10]; … … 27 27 825 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++. 28 28 29 {{{ 29 {{{#!c++ 30 30 string strMsg; 31 31 string strID;