Please help How do I put executable code into a file /*Put the executable code to file, execute the program, redirect the output and understand the effects.*/ /*Begin of pre-processing directive block*/ #include <stdio.h> #include <limits.h>
/*End of pre-processing directive block*/
/*Begin of main function*/
int main(void)
{
fprintf(stdout, "She sells sea shells\n");
fprintf(stderr, "by the seashore.\n");
system("PAUSE");
return 0;
} // End of main function
