in my exam, there was a question:
what is linux/command which can't be ignored in any way? write the command to kill a process having id 1234 ?
my answer was : SIGKILL and for second part i have written a C code function kill(1234,SIGKILL).
now my teacher is saying kill() is not a command rather it is function. SO answer is "kill -9 1234" according to him. So can anyone tell that is he wrong or i am wrong ? kill() is a function. thanks in advance.