fork download
  1. It is safer to use _beginthreadex than _beginthread. If the thread generated by _beginthread exits quickly,
  2. the handle returned to the caller of _beginthread might be invalid or, worse, point to another thread. However,
  3. the handle returned by _beginthreadex has to be closed by the caller of _beginthreadex,
  4. so it is guaranteed to be a valid handle if _beginthreadex did not return an error.
Not running #stdin #stdout 0s 0KB
stdin
Standard input is empty
stdout
Standard output is empty