////////////////////////////////////////////////////////////////////// // // one.c - program that displays the number '1' to STDOUT. It does // not take any input. // // Written By: Matthew Haas // Compile: run 'Make' from the project's base directory // Execute: change into project 'bin/' or add project bin/ to your // PATH // // Sample run: // // lab46:~/src/pipemath-fall2014/bin$ ./one // 1 // lab46:~/src/pipemath-fall2014/bin$ // #include #include int main(int argc, char **argv) { fprintf(stdout, "1\n"); return (0); }