c++

الاسم (8) زياد علاء السيد الشهالي سكشن (8) سلمي اسامة عبد الرحمن ندا سكشن صلاح سمير زيدان سكشن (8) (فرقة اولي)

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

1. data types

1.1. int

1.2. float

1.3. double

1.4. char

2. applications

2.1. Banking Applications

2.2. Graphics

2.3. Cloud/Distributed Systems

2.4. Databases

2.5. Browsers

2.6. Embedded Systems

3. libraries

4. analysis

5. preprocesor

5.1. #include<file>/include"file"

5.2. #if /#ifdef / #ifndef

6. subprogram

6.1. main function

6.2. cube function

6.3. square function

7. features

7.1. Platform or Machine Independent/ Portable

7.2. Simple

7.3. High-level programming language

7.4. Case sensitive

7.5. DMA (Dynamic Memory Allocation)

8. operations

8.1. // printing the sum of a and b cout << "a + b = " << (a + b) << endl;

8.2. int a,b,c; a=b++, c++;

8.3. int x = 10; x=5; if(x == 5)

8.4. int x=10; x += 4 x -= 5

9. resources

10. synthesis

11. selection

11.1. if statement