Announcements


April 26, 2005:

March 23, 2005:

March 23, 2005:

February 27, 2005:

February 16, 2005:

February 1, 2005:

January 25, 2005:

January 20, 2005:

January 19, 2005:

January 13, 2005:

  1. You are required to first go through the VC++ 6.0 tutorial. It is easy to follow - it will teach you how to create a program.
  2. You have to implement your assignments in VC++ 6.0. As I mentioned in class C++ is superset of C. Currently the assignment is not specific to C++ special feature.  "std::cout" and "std::cin" are two C++ specific features that you will use - you are encoraged to try out other C++ specific input?output functions.
  3. Exercise 2.37 has two parts - one is ENCRYPTING and another is DECRYPTING - it tells you to do both in separate files. You are required to do only ENCRYPTING. If you do DECRYPTING  you will get 10 extra points.

    In homeworks you will have opportunities to score extra points that will help you in better grades. I encourage to get those extra points.

January 11, 2005:

for(i = 0; i < 10; i++) {

int i = 0;

std::cout << i << endl;

}

loops 10 times. In the class I had written (i < 9).

>