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

1. how to write a program in C

1.1. 1_C is a case sensitive language so all C instructions must be written in lower case letter. 2_All C statement must end with a semicolon. Whitespace is used in C to describe blanks and tabs. 3_Whitespace is required between keywords and identifiers.

2. operators

2.1. logical operatores

2.2. arithmetic operators

2.3. Special operators

2.4. Bitwise operators

2.5. Assignment operators

2.6. Conditional operators

3. C syntax rules

3.1. headers files

3.2. main function

3.3. comments in C

3.3.1. // This is a comment /* This is a comment */ /* This is a long and valid comment */ // this is not

3.4. semicolones in C

3.5. tokens in C

3.5.1. keywords

3.5.2. constants

3.5.3. operators

3.5.4. variables

3.5.5. punctuators

4. types of data types in C

4.1. primary

4.1.1. int

4.1.2. float

4.1.3. char

4.1.4. double

4.2. secondary

4.2.1. functions

4.2.1.1. standard library functions

4.2.1.2. user defined functions

4.2.2. arrays

4.2.2.1. data types of an a arrays

4.2.2.2. accessing arrays

4.2.2.3. declaration of arrays

4.2.3. pointers

4.2.3.1. pointer declaration

4.2.3.2. initalization of pointrrs

4.2.3.3. how do pointers work

5. features

5.1. Fast and Efficient

5.2. Procedural Language.

5.3. Libraries with rich Functions.

5.4. Modularity

5.5. General Purpose Language

5.6. Rich set of built in Operators

5.7. Middle Level Language

6. variablas

6.1. naming a variable

6.2. variable defintion

6.3. variable lnitialization

6.4. variable declaration

6.5. types of variables

6.5.1. local variables

6.5.2. global variables

6.5.3. automatic variables

6.5.4. static variables

7. loops in C

7.1. for loop

7.2. while loop

7.3. do_while loop

7.4. nested for loop

8. simple program in C ?

8.1. #include int main() { printf("Hello,World"); return 0; }

9. h