Hello,
I'm just starting to program in Unix and I want to execute a binary. The program that I execute gets user input from standard input and prints it out. How would I run the program then print to the standard in?

I know that execl("./program"... ); works to run the program but I'm not sure how to give it input.