5
5
### Primitive types and built-in data structures in C
6
6
C is a statically typed language. Each of the variables should be type casted.
7
7
There are five basic data types associated with variables:
8
- - int - integer: a whole number.
9
- - float - floating point value: i.e. a number with a fractional part.
10
- - double - a double-precision floating point value.
11
- - char - a single character.
12
- - void - valueless special purpose type.
8
+ - ** int** - integer: a whole number.
9
+ - ** float** - floating point value: i.e. a number with a fractional part.
10
+ - ** double** - a double-precision floating point value.
11
+ - ** char** - a single character.
12
+ - ** void** - valueless special purpose type.
13
13
14
14
Other than these there are some derived data types. they are -
15
- - Arrays
16
- - Pointers
17
- - Structures
18
- - Enumeration
15
+ - ** Arrays**
16
+ - ** Pointers**
17
+ - ** Structures**
18
+ - ** Enumeration**
19
19
20
20
##### More details about data types in C:
21
21
- [ C data types - Tutorialspoint] ( https://www.tutorialspoint.com/cprogramming/c_data_types.htm )
22
22
- [ C programming data types - programiz] ( http://www.programiz.com/c-programming/c-data-types )
23
23
24
- ### Big-O Cheat Sheet
25
-
26
-
27
- [ Big-O Cheat Sheet Link] ( http://bigocheatsheet.com/ )
28
24
29
25
### How to Use
30
26
To test or use codes from this repository you can use any popular IDE, online Editor or compile them locally using GCC compiler.
@@ -48,3 +44,8 @@ run it using:
48
44
* [ Khan Academy tutorial on Algorithms] ( https://www.khanacademy.org/computing/computer-science/algorithms )
49
45
* [ Topcoder Tutorials] ( https://www.topcoder.com/community/data-science/data-science-tutorials/ )
50
46
* [ GeeksforGeeks] ( http://www.geeksforgeeks.org/ )
47
+ * [ hackerearth Tutorial] ( https://www.hackerearth.com/practice/ )
48
+
49
+ ### Big-O Cheat Sheet
50
+
51
+ [ Big-O Cheat Sheet Link] ( http://bigocheatsheet.com/ )
0 commit comments