CS19001/CS19002 Programming and Data Structures Laboratory

Autumn/Spring semester

Miscellaneous information for students

Here is a set of suggestions/instructions/comments that the students must read carefully. This page may grow later. Visit it again.

Credit distribution

How to submit your assignments

There are three posibilities for receiving your submissions:

Details on these different modes will be added soon.

Taking print-outs

Indentation

You should learn how to indent a C program. Properly indented programs are legible, promote easier debugging and provide protection against certain queer compilation errors.

Indentation does not only mean that a few lines of your code leave extra blank spaces on their left. Certain conventions regarding these spaces are necessary for this indentation to be a proper indentation. This also includes proper placement of the curly braces ({ and }). A sequence of C statements enclosed within a matching pair of braces is called a block.

Fix an indentation amount for your codes. In industry, people usually use a tab as the indentetation amount. Since a tab (normally) means eight characters, programs with large levels of nesting of blocks may face difficulty with such a large indentation amount. You may instead use 2 or 3 spaces as the indentation amount.

Miscellaneous topics


Course home