随笔分类 -  c

摘要:原书网址:http://cs.ecs.baylor.edu/~donahoo/practical/CSockets2/textcode.html 源码下载: 链接:https://pan.baidu.com/s/10uI_uu_qXbVysyL0q1xybQ 提取码:xlwh 阅读全文
posted @ 2019-05-15 01:17 anobscureretreat 阅读(233) 评论(0) 推荐(0) 编辑
摘要:输出 阅读全文
posted @ 2019-05-07 00:21 anobscureretreat 阅读(160) 评论(0) 推荐(0) 编辑
摘要:输出 阅读全文
posted @ 2019-05-06 23:43 anobscureretreat 阅读(239) 评论(0) 推荐(0) 编辑
摘要:输出 阅读全文
posted @ 2019-05-06 23:07 anobscureretreat 阅读(2696) 评论(0) 推荐(0) 编辑
摘要:输出 阅读全文
posted @ 2019-05-06 21:59 anobscureretreat 阅读(1944) 评论(0) 推荐(0) 编辑
摘要:输出 阅读全文
posted @ 2019-05-06 21:20 anobscureretreat 阅读(706) 评论(0) 推荐(0) 编辑
摘要:https://www.glfw.org/docs/latest/files.html 阅读全文
posted @ 2019-03-16 18:34 anobscureretreat 阅读(451) 评论(0) 推荐(0) 编辑
摘要:输出 阅读全文
posted @ 2019-01-08 09:35 anobscureretreat 阅读(173) 评论(0) 推荐(0) 编辑
摘要:#include #define N 10 #define MIN(X,Y) ((X<Y)?(X):(Y)) int f(int arr[],int len,int n) { if(n == len-1) return arr[n]; int min = f(arr,len,n+1); ... 阅读全文
posted @ 2018-11-23 21:32 anobscureretreat 阅读(1673) 评论(0) 推荐(0) 编辑
摘要:#include int main() { int m,n,i,j,k; printf("Enter no. of elements in array1:\n"); scanf("%d",&m); int arr[m]; printf("Enter array elements:\n"); for(i=0;i<m;i++) scanf("%d",&arr[i]); printf("En... 阅读全文
posted @ 2018-11-08 17:53 anobscureretreat 阅读(1508) 评论(0) 推荐(0) 编辑
摘要:#include /* printf */ #include /* assert */ void print_number(int* myInt) { assert (myInt!=NULL); printf ("%d\n",*myInt); } int main () { int a=10; int * b = NULL; int * c = ... 阅读全文
posted @ 2018-10-20 22:19 anobscureretreat 阅读(140) 评论(0) 推荐(0) 编辑
摘要:#include double factorial(unsigned int i) { if(i <= 1) { return 1; } return i * factorial(i - 1); } int main() { int i = 15; printf("%d 的阶乘为 %f\n", i, factorial(i)); ... 阅读全文
posted @ 2018-10-20 17:48 anobscureretreat 阅读(150) 评论(0) 推荐(0) 编辑
摘要:#include #include #define BUF_SIZE 10 void display(int array[], int maxlen) { int i; for(i = 0; i array[begin]) // 如果比较的数组元素大于基准数,则交换位置。 { swap(&array[i], &... 阅读全文
posted @ 2018-10-02 18:51 anobscureretreat 阅读(255) 评论(0) 推荐(0) 编辑
摘要:生成 swap 文件系统 激活 swap 文件 如果想系统启动时自动挂载,那就修改 /etc/fstab 文件, 新增如下内容 转自:https://blog.csdn.net/qq_29573053/article/details/69665996 阅读全文
posted @ 2018-07-30 23:39 anobscureretreat 阅读(1811) 评论(0) 推荐(0) 编辑
摘要:#include <stdio.h> int main() { int i,j,k; printf("\n"); for(i=1;i<5;i++){ for(j=1;j<5;j++){ for (k=1;k<5;k++){ if (i!=k&&i!=j&&j!=k) printf("%d,%d,%d 阅读全文
posted @ 2018-01-21 18:23 anobscureretreat 阅读(253) 评论(0) 推荐(0) 编辑
摘要:const int a;//声明一个常整型数 int const a;//声明一个常整型数 const int *a;//声明指向常整型数的指针,整型数不可修改,指针可以修改 int * const a;//声明指向整型数的常指针,整型数可以修改,指针不可以修改 int const * a cons 阅读全文
posted @ 2018-01-16 20:37 anobscureretreat 阅读(234) 评论(0) 推荐(0) 编辑