I know at least the basics of piping. However, I don't understand how to implement this task in in C using C pipes. I don't know how to take the output of one program as an input to another program and so on. Eg:
ls | wc | ./add
Here ls list the files, wc gives the counts of the listed files, and ./add adds the numbers given by wc.
Please help!
EDIT: It is an assignment. The exact problem statement is given as:
"Write a C program to read the names of two (or more) executable programs, and redirect the output of the first program to the input of the second program, output of the second program to the input of the third program, and so on..."

|will need a pipe. To start, you make a pipe, fork, in the child dup the write end onto stdout and exec ls. Now fork again, in the child dup the read end onto stdin and exec wc. Repeat as needed :) – Greg Inozemtsev Aug 20 '12 at 5:48