#include <stdio.h>
#include <process.h>
void sayit(void * arg) {
printf("hello, world! from child process\n");
_endthread();
}
int main(int argc, char ** argv) {
if (_beginthread(sayit, 16, NULL) == -1)
printf("Error\n");
return 0;
}
通过想法程序必须在函数中打印字符串,sayit
但它不会发生。是否有任何功能可以确定过程是否已完成或仍在工作?你能给我链接到 process.h 的完整文档吗?