/*
 * Sara Sprenkle 10/13/04
 * example.c
 * Example program: calculates the weekly salary for employees, given
 * a file of employee ids, payrate, and hours worked 
 * 
 * Step 1: creating outline
 */

#include<stdio.h>

int main() {
  
  /* open input file */

  /* read data from input file (employee_id, pay_rate, hours_worked) */

  /* calculate the salary for the employee */

  /* print the output for the employee */

  /* close the file */

  return 0;

}