- 博客(6)
- 收藏
- 关注
转载 memset
function memset void * memset ( void * ptr, int value, size_t num ); Fill block of memory Sets the first num bytes of the block of memory pointed by ptr to the specified value (interpr
2014-04-13 14:51:38
686
转载 Sizeof Array
Sizeof Array So, you want to know how many elements there are in your array? This is a tricky subject. Before we go any further, you should be familiar with the concepts discussed in c-strings
2014-04-13 09:57:04
1381
转载 sprintf
int sprintf ( char * str, const char * format, ... ); Write formatted data to string Composes a string with the same text that would be printed if format was used on printf, but instead of being
2014-04-13 09:51:51
865
转载 std::stringstream::str和ss
public member function std::stringstream::str string str() const; void str (const string& s); Get/set content The first form (1) returns a string object with a copy of the current cont
2014-04-13 08:59:58
2513
转载 itoa
function itoa char * itoa ( int value, char * str, int base ); Convert integer to string (non-standard function) Converts an integer value to a null-terminated string using the specif
2014-04-13 08:29:38
924
转载 atoi
function atoi int atoi (const char * str); Convert string to integer Parses the C-string str interpreting its content as an integral number, which is returned as a value of type int.
2014-04-13 08:28:51
705
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人