#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 4 typedef struct student { int id; /*学生学号 */ char name[20]; /*学生姓名 */ char subject[2 ...
分类:
其他好文 时间:
2021-06-11 18:15:08
阅读次数:
0
1、请举例说明静态链接库的创建与使用 ar:建立,修改档案或从档案中抽取成员 ar -r :替换归档文件中已有的文件或加入新文件 ar -t :显示归档文件内容 2、请举例说明共享库的创建与使用。 3、编程实现一个简单文件复制命令。 4、使用fork创建一个子进程,进程创建成功后父子进程分别输出不同 ...
分类:
系统相关 时间:
2021-06-11 18:13:23
阅读次数:
0
// P280例8.15 // 对教材上的程序作了微调整,把输出学生信息单独编写成一个函数模块 // 打印不及格学生信息和所有学生信息程分别调用 #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入 ...
分类:
其他好文 时间:
2021-06-11 18:09:49
阅读次数:
0
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 typedef struct student{ int id; char name[20]; char subject[20]; float perf; float ...
分类:
其他好文 时间:
2021-06-11 18:08:13
阅读次数:
0
1 // P280例8.15 // 对教材上的程序作了微调整,把输出学生信息单独编写成一个函数模块 // 打印不及格学生信息和所有学生信息程分别调用 #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序 ...
分类:
其他好文 时间:
2021-06-11 18:07:37
阅读次数:
0
1.请举例说明静态链接库的创建与使用。 2.请举例说明共享库的创建与使用。 3.编程实现一个简单文件复制命令 4.使用fork创建一个子进程,进程创建成功后父子进程分别输出不同的内容。 5.使用fork创建多个子进程。 6.在 fork 之前以写的方式创建了一个文件 test.txt。然后 fork ...
分类:
系统相关 时间:
2021-06-11 18:06:41
阅读次数:
0
// 对教材上的程序作了微调整,把输出学生信息单独编写成一个函数模块 // 打印不及格学生信息和所有学生信息程分别调用 #include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 // 运行程序输入测试时,可以把N改小一些输 ...
分类:
其他好文 时间:
2021-06-11 18:05:01
阅读次数:
0
#include<stdio.h> #include<stdlib.h> #include<string.h> #define N 3 typedef struct student { int id; char name[20]; char subject[20]; float perf; floa ...
分类:
其他好文 时间:
2021-06-11 18:04:10
阅读次数:
0
#include <stdio.h> const int N=3; int main() { int a[N] = {1, 2, 3}; int i; printf("通过数组名和下标直接访问数组元素:\n"); for(i=0; i<N; i++) printf("%d: %d\n", &a[i] ...
分类:
其他好文 时间:
2021-06-11 17:32:53
阅读次数:
0
1 #include<stdio.h> 2 #include<stdlib.h> 3 #include<string.h> 4 #define N 3 // 运行程序输入测试时,可以把N改小一些输入测试 5 6 typedef struct student { 7 int id; /*学生学号 */ ...
分类:
其他好文 时间:
2021-06-10 18:35:13
阅读次数:
0