What does a C program consist of?
Function
What is the source file extension for C programs?
. C OR. C
Can the source file of C program run directly? Why?
cannot be run directly. Because the computer can only recognize 0 and 1, the source file contains a lot of C language code, the computer is impossible to read
What steps does the C program require from development to operation?
1> writing. C Source Files
2> compile. C source file for. O Destination file
3> link. o The target file is an executable file
4> running an executable file
Expand what files are called. C,. O,. Out, respectively? At what stage of the C program development?
1>. c is a C language source file that is created when writing code
2>. O is the target file, which is generated when the compilation is successful
3>. Out is an executable file that is generated when the link succeeds
"C-Language concept"