I need to copy a file (the name of the file is entered via the keyboard) inside a folder (called backup) using execpl
printf("File name to copy? ");
scanf(" %99[^\n]", str);
char *args[] = { "cp", str,"/backup" };
p = fork();
// Fork validations + Dad wait for child
execlp(args[0],args[0], args[1], args[2], NULL);
exit(1);