I do not understand how execlp() works in Linux
this prototype: Says that execlp ìs a variable argument function. It takes 2 const char *. The rest of the arguments, if any, are the additional arguments to hand over to program we want to run – also char * – all these are C strings (and the last argument must be a NULL pointer) … Read more