CS 3733 Operating Systems, Fall 2000 Assignment 3 Comments



Warning: This is not for the current semester.


This assignment was graded on a basis of 30 points.

  1. If you get a lot of extraneous output when you run lint, try
    lint -Xarch=v9 filename
  2. You should look at the output generated to make sure it makes sense.
  3. Here are some of the data types people used:
    int
    float: not as good as int
    long: same as int
    double: a little better than int
    long long: twice as good as int
    string: limited only by memory and time
  4. Make sure your output specification and you string to number conversion method match the data type you are using.