自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(7)
  • 收藏
  • 关注

原创 Practical C Programming - Chapter 10

C PreprocessorAll preprocessor commands begin with a hash mask (#) in column one and terminate at the end-of-line. A line may be continued by putting a backslash () at the end.define statement#define n

2015-02-16 16:19:51 259

原创 Practical C Programming - Chapter 9

Chapter 9. Variable Scope and Functions All variables have two attributes: scope and class. The scope of a variable is the area of the program in which the variable is valid. A global variable is val

2015-02-12 17:14:44 248

原创 Practical C Programming - Chapter 5

Arrays, Qualifiers, and Reading Numbers Strings C does not allow one array to be assigned to another. char sam[4]; sam = "sam"; // error The standard function fgets can be used to read a string

2015-02-12 15:12:17 245

原创 Practical C Programming - Chapter 4

Chapter 4. Basic Declarations and ExpressionsBasic Program StructureThe function named main is special, because it is the first function called. Other functions are called directly or indirectly from m

2015-02-07 21:34:31 275

原创 Practical C Programming - Chapter 3

Chapter 3. StyleNot all comment sections are needed, so use only those that apply: Heading Author Purpose Usage References File formats Restrictions Revision history Error handling Notes Use vim abbrev

2015-02-07 20:41:13 220

原创 Practical C Programming - Chapter 2

Chapter 2. Basics of Program WritingBasics of GCC compilergcc -g -Wall -ohello hello.c The -g option enables debugging. The switch -Wall turns on the warnings. The switch -ohelllo tells the compiler th

2015-02-05 22:37:02 201

原创 Ubuntu14.04上安装Ruby/tk

Tcl8.6 is distributed on Ubuntu14.04 by default. Ruby/tk doesn't support tcl8.6, it need tcl8.4 or tcl8.5. Download ActiveTcl from official site, install it and reintall ruby. rvm reinstall ruby-2.1

2015-02-04 23:54:20 947

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

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