File: intro.yo

package info (click to toggle)
c%2B%2B-annotations 8.2.0-1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 11,804 kB
  • ctags: 2,845
  • sloc: cpp: 15,418; makefile: 2,473; ansic: 165; perl: 90; sh: 29
file content (79 lines) | stat: -rw-r--r-- 2,096 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
INCLUDEFILE(mailus)

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)
)()
)

    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 (C++0x, ?))
        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)

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