C language learned by suffering
C language learned by suffering
Exercise 2
fundamental knowledge
Q1-1
What is the smallest grammatical unit of the C language?
Q 1-2
C programs can be written in a free-writing style.
What do we call this feature?
What do we call this feature?
Q1-3
Whether C is case-sensitive or not.
Q1-4
By inserting a tab character or a space character at the beginning of a line
What do you call a writing style that expresses hierarchy?
What do you call a writing style that expresses hierarchy?
Q1-5
You can write a description in your program, but
What do we call this description?
What do we call this description?
program writing
Q2-1
Create a program with only a main function that does nothing.
However, write the program according to convention and indent it.
However, write the program according to convention and indent it.
descriptive expression
Q3-1
C programs can be written in any way you want.
Indentation and comments do not affect the behavior of the system, but they do not affect the
Briefly explain why it is common to add them.
Indentation and comments do not affect the behavior of the system, but they do not affect the
Briefly explain why it is common to add them.
Basic Knowledge (sample answers)
Solution 1-1
Token (word)
Solution 1-2
Free format (free format)
Solution 1-3
be distinguished
Solution 1-4
indent
Solution 1-5
Comment
Program writing (example of solution)
Solution 2-1
int main(void)
{
return 0;
}
Short Answer Type (Sample Answer)
Solution 3-1
To provide a quick overview of the program
About this Site
The C language (bitter C), which is learned by suffering, is
This is the definitive C language introductory site.
It systematically explains the basic functions of the C language and
It is as complete as or more complete than any book on the market.