

You should use comments liberally to explain and document your codes. End-of-line Comment: begins with // and lasts till the end of the current line.


Int sumEven = 0 // For accumulating even numbers, init to 0 Int sumOdd = 0 // For accumulating odd numbers, init to 0 * Sum the odd and even numbers, respectively, from 1 to a given upperbound. Read " Introduction to Programming in C for Novices and First-time Programmers" if you need help in understanding this program. C")īelow is a simple C program that illustrates the important programming constructs ( sequential flow, while-loop, and if-else) and input/output. K&R C: Pre-standardized C, based on Brian Kernighan and Dennis Ritchie (K&R) "The C Programming Language" 1978 book.Otherwise, read " Introduction to Programming in C for Novices and First-time Programmers". I assume that you could write some simple programs. This chapter explains the features, technical details and syntaxes of the C programming language.
