/home/wpollock1/public_html/restricted/ShellScripting/genoutput.c

#include <stdio.h>

int main (void)
{
  printf( "this was sent to stdout\n" );
  fprintf( stderr, "THIS WAS SENT TO STDERR\n" );
  return 0;
}