There was an error while loading. Please reload this page. 1a) code up arrays to get to a 3-D int array. name this program arraysAreEasy.cpp Code up two (or three if ...
int main(int argc, char** argv, char** envp) { int status; int pid = fork(); char* command[2]; command[0] = "cat"; command[1] = "project1a.c"; command[2] = NULL; if ...