自定义博客皮肤VIP专享

*博客头图:

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

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

博客底图:

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

栏目图:

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

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+

PeaceTree的博客

热爱学习!

  • 博客(6)
  • 收藏
  • 关注

原创 C语言的递归-Recursion

C语言的递归-RecursionRecursion occurs when a function contains within it a call to itself. Recursion can result in very neat, elegant code that is intuitive to follow. It can also result in a very large am...

2018-06-11 00:09:23 1169

原创 C语言数组与指针(Arrays and Pointers)关系解析-差不多是一回事儿

C语言数组与指针(Arrays and Pointers)A pointer to a given data type can store the address of any variable of that particular data type. For example, in the following code, the pointer variable pc stores the a...

2018-06-10 23:44:52 1136

原创 动态内存分配Dynamic allocation(C语言划重点)

动态内存分配Dynamic allocation(C语言划重点)Dynamic allocation of memory allows building complex data structures such as linked lists. Allocating memory dynamically helps us to store data without initially knowin...

2018-06-10 22:00:58 1459

原创 C语言中Pointer, Array,String and Structures的区别

指针(pointer )Tasks, such as dynamic memory allocation, cannot be performed without using pointers. Every variable is a memory location and every memory location has its address defined which can be acc...

2018-06-10 21:43:45 1470

原创 Structures

The most basic example of structures are points, which are a single entity that contains two variables - x and y. Let's define a point in a two-dimensional point:struct point { int x; int y;}...

2018-06-10 21:40:07 277

原创 C语言的line counting(EOF, getchar()以及ASCII详解)

line counting#include<stdio.h>int main(){ int c, nl; nl= 0; while((c=getchar()) != EOF) if(c == '\n') //'\n' stands for the value of the newline character, which is 10...

2018-06-10 21:39:09 411

空空如也

空空如也

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

TA关注的人

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