#include #include #include #include int main() { int mypipe[2]; printf("pipe\n"); if (pipe(mypipe)) { printf("error\n"); } return 0; }