The examples discussed so far illustrate that a C program can be viewed as a group of building blocks called functions. A function is a subroutine that may include one or more statements designed to perform a specific task. To write a C program, we first create functions and then put them together.
A C program may contain one or more sections as shown in video.
The documentation section consists of a set of comment lines giving the name of the program, the author and other details, which the programmer would like to use later.
The link section provides instructions to the compiler to link functions from the system library.
The definition section defines all symbolic constants. There are some variables that are used in more than one function. Such variables are called global variables and are declares in the global declaration section that is outside of all the functions. This section also declares all the user-defined functions. Every C program must have one main() function section. This section contain two part, declaration part and executable part.
The declaration part declares all the variables used in the executable part. there is at least one statement in the executable part.These two part must appear between the opening and closing braces.
The program execution begins at the opening brace and end at the closing brace. The closing brace of the main function section is the logical end of the program. All statement in the declaration and executable part end with a semicolon (;).
The subprogram section contains all the user-defined functions that are called in the main function. User-defined functions are generally placed immediately after the main function, although they appear in any order. All sections, except the main function section may be absent when they are not required.
In questa pagina del sito puoi guardare il video online Basic Structure Of C Program della durata di ore minuti seconda in buona qualità , che l'utente ha caricato Web Tech Treat 15 aprile 2021, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 22 volte e gli è piaciuto 4 spettatori. Buona visione!