- 博客(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
101
转载 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
128
转载 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
114
转载 pointers
int (* p2)[6]; p2 points to an array of six ints. 转载于:https://my.oschina.net/renrenc/...
2016-07-18 15:22:00
92
转载 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
103
转载 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
102
转载 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
85
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人