Write a program to build multifile program using fork & exec as follows

All QuestionsCategory: Operating SystemWrite a program to build multifile program using fork & exec as follows
Anonymous asked 3 years ago
  • There are multiple source files holding some functions
  • Create multiple child processes to compile each source file (execl/execlp)
  • On successful completion, launch another child process for linking
  • On successful linking, launch another child process for executing