Kom i gang. Det er Gratis
eller tilmeld med din email adresse
c++ af Mind Map: c++

1. features

1.1. Simple

1.2. Fast

1.3. Recursion

1.4. Rich Library

1.5. Portability

1.6. Mid-Level Programming

1.7. Case Sensitive

1.8. Compiler-Based

1.9. Dynamic Memory Allocation

1.10. Object-Oriented Programming

2. Data Types

2.1. Primary

2.1.1. int , char , float , double , boolean , void , wide character

2.2. Secondary

2.2.1. Array , Function , Pointer

2.3. User-defined

2.3.1. Structure , Union , Enum

3. Libraries Functions

3.1. studio.h

3.2. conio.h

3.3. string.h

3.4. math.h

3.5. time.h

3.6. ctype.h

4. operators

4.1. Binary operator

4.1.1. Arithmetic operator

4.1.1.1. + , - , * , / ,%

4.1.2. Rational operator

4.1.2.1. < , <= , > , >= , == , !=

4.1.3. Logical operator

4.1.3.1. && , ||

4.1.4. Bitwise operator

4.1.4.1. & , | , << ,>> , ~ , ^

4.1.5. Assignment operator

4.1.5.1. = , += , -= , *= , /= , %=

4.2. Ternary operator

4.2.1. ?:

4.3. Unary operator

4.3.1. ++ , - -

5. applications

5.1. GUI

5.2. DBMS

5.3. Operating system

5.4. Cloud Computing

5.5. Web Browsers

5.6. Job Opportunities

6. control ststements

6.1. selection ststements

6.1.1. If ..else

6.1.2. Switch ..case

6.2. Iteration statements

6.2.1. While

6.2.2. do ..While

6.2.3. For

6.3. Jump statements

6.3.1. break

6.3.2. goto

6.3.3. continue