CS计算机代考程序代写 #include

#include
#include
#include
#include
#include
#include

int main(int argc, char **argv) {
// Expecting 2 arguments.
// The first is a program to execute
// The second is the name of a file to redirect input from

// open the file that is in argv[2]
// Use “open” instead of “fopen” to get the file descriptor

// Reset stdin so that it is coming from the open file

// Use exec to run the program specified in argv[1]

return 1;
}