Practice Problem 2
Basics
Question 1-1
What is the smallest unit of syntax in the C language?
Question 1-2
C language programs can be written in a free style. What is this feature called?
Question 1-3
Does C distinguish between uppercase and lowercase letters?
Question 1-4
What is the term for the writing style that uses tabs or spaces at the beginning of a line to
express hierarchy?
express hierarchy?
Question 1-5
You can write comments within the program, but what do you call these comments?
Program Manual
Question 2-1
Create a program containing only a main function that does nothing. However, follow conventional coding practices and include proper indentation.
explanatory
Question 3-1
C language programs allow for flexible coding styles, so
adding indentation or comments does not affect program execution. Explain concisely why it is common practice to include them.
adding indentation or comments does not affect program execution. Explain concisely why it is common practice to include them.
Fundamentals (Answer Key)
Solution 1-1
token (word)
Solution 1-2
free-form
Solution 1-3
distinguished
Solution 1-4
indent
Solution 1-5
comment
Program Documentation (Example Solution)
Solution 2-1
int main(void)
{
return 0;
}
Descriptive (answer example)
Solution 3-1
To quickly grasp the program's overview.
About This Site
Learning C language through suffering (Kushi C) isThis is the definitive introduction to the C language.
It systematically explains the basic functions of the C language.
The quality is equal to or higher than commercially available books.




