Get Started. It's Free
or sign up with your email address
c++ by Mind Map: c++

1. operators

1.1. Binary operator

1.1.1. Arithmetic operator

1.1.1.1. + , - , * , / ,%

1.1.2. Rational operator

1.1.2.1. < , <= , > , >= , == , !=

1.1.3. Logical operator

1.1.3.1. && , ||

1.1.4. Bitwise operator

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

1.1.5. Assignment operator

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

1.2. Ternary operator

1.2.1. ?:

1.3. Unary operator

1.3.1. ++ , - -

2. applications

2.1. GUI

2.2. DBMS

2.3. Operating system

2.4. Cloud Computing

2.5. Web Browsers

2.6. Job Opportunities

3. features

3.1. Simple

3.2. Fast

3.3. Recursion

3.4. Rich Library

3.5. Portability

3.6. Mid-Level Programming

3.7. Case Sensitive

3.8. Compiler-Based

3.9. Dynamic Memory Allocation

3.10. Object-Oriented Programming

4. Data Types

4.1. Primary

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

4.2. Secondary

4.2.1. Array , Function , Pointer

4.3. User-defined

4.3.1. Structure , Union , Enum

5. Libraries Functions

5.1. studio.h

5.2. conio.h

5.3. string.h

5.4. math.h

5.5. time.h

5.6. ctype.h

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