自定义博客皮肤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)
  • 收藏
  • 关注

转载 uses of function

function name used in a prototype declaration:int comp(int x, int y); function name used in a function call:status = comp(q,r); function name use...

2016-07-25 14:35:00 82

转载 pointer types

int board[8][8]; // an array of arrays of int int ** ptr; // a pointer to a pointer to int int * risks[10]; // a 10-element array of pointers to ...

2016-07-25 10:25:00 112

转载 malloc()疑问

#include <stdio.h> #include <stdlib.h> #include <string.h> int static_store = 30; const char *pcg = "String Literal"; int main(v...

2016-07-19 09:25:00 94

转载 pointers

int (* p2)[6]; p2 points to an array of six ints. 转载于:https://my.oschina.net/renrenc/...

2016-07-18 15:22:00 76

转载 array VS pointer

#define MSG "I'm special." #include <stdio.h> int main() { char ar[] = MSG; const char *pt = MSG; printf("address of \"I'm...

2016-07-08 10:51:00 88

转载 More About const

Earlier, you saw that you can use const to create symbolic constants: const double PI = 3.14159; That was something you could do with the #define ...

2016-07-06 14:32:00 84

转载 C

#include <stdio.h> void larger_of(double *, double *, double *); int main(void) { double x, y, z; while(scanf("%lf %lf %lf", &...

2016-07-05 08:35:00 69

空空如也

空空如也

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

TA关注的人

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