File: intro.yo

package info (click to toggle)
c%2B%2B-annotations 11.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 10,952 kB
  • sloc: cpp: 20,008; makefile: 1,502; ansic: 165; sh: 121; perl: 90
file content (92 lines) | stat: -rw-r--r-- 2,413 bytes parent folder | download
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
includefile(intro/intro)

    lsect(WHATSNEW)(What's new in the C++ Annotations)
    includefile(whatsnew)

COMMENT(
IFDEF(html)(
    lsect(FREELECTURES)(Free Lectures in C++)
    includefile(freelectures)
)()
END )

    sect(C++'s history)
    includefile(intro/history)

        subsect(History of the C++ Annotations)
        includefile(intro/annohistory)

        lsubsect(CppComp)(Compiling a C program using a C++ compiler)
        includefile(intro/cascpp)

        lsubsect(COMPILATION)(Compiling a C++ program)
        includefile(intro/compiling)

            subsubsect(C++ under MS-Windows)
            includefile(intro/mswindows)

            lsubsubsect(COMPSRC)(Compiling a C++ source text)
            includefile(intro/compilesources)

    lsect(Pretensions)(C++: advantages and claims)
    includefile(intro/advantage)

    lsect(OOP)(What is Object-Oriented Programming?)
    includefile(intro/object)

    sect(Differences between C and C++)
    includefile(intro/differences)

        subsect(The function `main')
        includefile(intro/main)

        subsect(End-of-line comment)
        includefile(intro/eoln)

        subsect(Strict type checking)
        includefile(intro/type)

        lsubsect(FunctionOverloading)(Function Overloading)
        includefile(intro/overload)

        subsect(Default function arguments)
        includefile(intro/default)

        subsect(NULL-pointers vs. 0-pointers and nullptr)
        includefile(intro/null)

        subsect(The `void' parameter list)
        includefile(intro/void)

        subsect(The `#define __cplusplus')
        includefile(intro/cplus)

        subsect(Using standard C functions)
        includefile(intro/cfunc)

        lsubsect(CHeaders)(Header files for both C and C++)
        includefile(intro/header)

        lsubsect(LOCALVARS)(Defining local variables)
        includefile(intro/local)

        subsect(The keyword `typedef')
        includefile(intro/typedef)

COMMENT(
        subsubsect(Designated initialization)
        TO DO
COMMENT(FBB - N4713, p. 1286, 199)
END)

        lsubsect(FunctionInStruct)(Functions as part of a struct)
        includefile(intro/struct)

        subsect(Additional features you should know about)

            subsubsect(Evaluation order of operands)
            includefile(intro/evaluation)

            subsubsect(Attributes)
            includefile(intro/attributes)