I wrote this program in C and started the Windows system. My system hung up, and even the task manager did not open. Finally, I had to reboot. This is clearly a malicious program, but my antivirus does not detect it. Why?
#include<unistd.h>
main() {
while(1)
fork();
}
source
share