- ..clause 1..: Basic knowledge
- Memo
- ..clause 3..: Description type
- ..clause 4..: Basic knowledge(example solution)
- Memo(example solution)
- ..clause 6..: Description type(example solution)
[ 1-1 ]
The program of C language is made as sets of certain things.
What is a certain thing?
[ 1-2 ]
The structure of the thing with the above-mentioned becomes a combination of four functions.
What are the four functions?
Answer even the sign of order and the delimitation correctly.
Example solution
[ 1-3 ]
Because C language is a language for man, and it is not possible to understand to the computer
There is software that translates C language into the language for the computer.
What is called such software?
Example solution
[ 2-1 ]
Make the program of main function alone that doesn't do anything.
Example solution
[ 3-1 ]
Though a free name can be named to the function in C language
The function named main of one is always indispensable.
Describe the reason concisely.
[ 1-1 ]
Function
[ 1-2 ]
Type name function name (argument)Processing
- Each word may be somewhat different.
Problem
[ 1-3 ]
Compiler
- Because the compilation is translation work, it answers wrong.
Problem
[ 2-1 ]
- It is good in it now as long as it is possible to compile.int main(void){return 0;}
[ 3-1 ]Problem
There is no concept of order in the function of C language though you may use in which order
Then, because it doesn't understand the function used first is any
It is decided that the function used most first is a name of main.
- Demerit mark when concept of order is not written.