-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path_3_ProgramStructure.h
More file actions
45 lines (36 loc) · 1.24 KB
/
Copy path_3_ProgramStructure.h
File metadata and controls
45 lines (36 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// ===========================================================================
/// <summary>
/// _3_ProgramStructures.h
/// CplusPlus
/// created by Mehrdad Soleimanimajd on 09.05.2018
/// </summary>
/// <created>ʆϒʅ, 09.05.2018</created>
/// <changed>ʆϒʅ, 02.07.2023</changed>
// ===========================================================================
#ifndef _3_PROGRAMSTRUCTURE_H
#define _3_PROGRAMSTRUCTURE_H
void _07_01_ControlStructures ();
void _07_02_SelectionStatements ();
void _07_03_IterationStatements ();
void _07_04_JumpStatements ();
void _07_05_AnotherSelectionStatement ();
void _08_01_Functions ();
void _08_02_VoidFunctions ();
void _08_03_MainFunctionReturnValue ();
void _08_04_PassedArgumentsTypes ();
void _08_05_Efficiency ();
void _08_06_InlineFunctions ();
void _08_07_ParametersDefaultValues ();
void _08_08_FunctionsDeclaration ();
void _08_09_Recursivity ();
void _09_01_OverloadsAndTemplates ();
void _09_02_OverloadedFunctions ();
void _09_03_FunctionTemplates ();
void _09_04_ParticularTypeTemplateArguments ();
void _10_01_NameVisibility ();
void _10_02_Scopes ();
void _10_03_Namespaces ();
void _10_04_UsingKeyword ();
void _10_05_NamespaceAliasing ();
void _10_06_StorageClasses ();
#endif // !_3_PROGRAMSTRUCTURE_H