自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(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关注的人

提示
确定要删除当前文章?
取消 删除