In our general program we can’t run two process at same time for e.g we can’t run two for loop at same time.For running two process at same time we need Multithreading.In C we do it by the _beginthread and
_endthread run time library function.All the above c run time library functions are in the process.h header file.
Header
process.h
Prototype
unsigned long _beginthread(void(* func)(void*), unsigned stack_size, void *arg);
Description
_endthread run time library function.All the above c run time library functions are in the process.h header file.
Header
Prototype
Description