The C Programming Language Chapter-1
Chapter-1 A Tutorial Introduction
Notes of The C programming Language
Integer Division of C
In C, integer division will truncate the result to zero, regardless of whether the result is positive or negative.
printf Conversion Specification %f
For example, %6.4f
means printf
should print the value as floating point, at least 6 characters wide (it means the total width) and 4 after the decimal point.
1 |
|
1 | printFloatWidth1: 1111.2220 |
If the valid digits of the value cannot fill the least width, printf
will fill it with spaces, as illustrated in printFloatWidth2
.
Symbolic Constants
1 |
Input and Output
C provides getchar()
and putchar()
as the user input/output interface. Comparing with InputStream
and OutputStream
in Java, input and output methods in C do not specify the source, destination and whether use buffer explicitly. getchar()
and putchar()
implicitly set console as input source and output destination, and enable buffer.
It’s worth noting that \n
is not EOF. When we enter \n
in the terminal, the program will push the buffer (including \n
itself) to the while
loop including getchar()
. Then getchar()
will read every character till the buffer is empty, and getchar()
will block on it. Although the behaviors of this ‘echo’ program like it’s processing strings, it can only recognize characters one by one.
A simple example
1 | void copyInput() { |
1 | 1 |
Declare functions in a compatible format
We all know if you leave empty in the definition of C function argument list, it means this function need no argument. But for the compatibility with older C programs, it would be better to use void
for an explicitly empty argument list.
1 |
|
The C Programming Language Chapter-1
http://yenotes.org/2021/12/10/The-C-Programming-Language-Chapter-1/