此篇為空白。
Degree of multiprogramming:多工程度、記憶體中行程的總數量
#include <sys/types.h>
#include <stdio.h>
#include <unistd.h>
int main(void) {
pid_t pid;
/* fork a child process */
pid = fork();
if (pid < 0) { // erro occurred
fprintf(stderr, "Fork Failed");
return 1;
}
else if (pid == 0) { // child process
execlp("/bin/ls", "ls", NULL);
}
else { // parent process
// parent will wait for the child to complete
wait(NULL);
printf("Child Complete\n");
}
return 0;
}
1. 正向推論:已知條件,推論出結論。
2. 逆向推論:先提出結論或假設, 再推論前提(條件)。
[優點] 模糊智慧型控制