Skip to content

Commit 3ee2b9c

Browse files
committed
Main README file updated
1 parent a69ddd3 commit 3ee2b9c

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

README.md

Lines changed: 14 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -5,26 +5,22 @@
55
### Primitive types and built-in data structures in C
66
C is a statically typed language. Each of the variables should be type casted.
77
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.
1313

1414
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**
1919

2020
##### More details about data types in C:
2121
- [C data types - Tutorialspoint](https://www.tutorialspoint.com/cprogramming/c_data_types.htm)
2222
- [C programming data types - programiz](http://www.programiz.com/c-programming/c-data-types)
2323

24-
### Big-O Cheat Sheet
25-
26-
27-
[Big-O Cheat Sheet Link](http://bigocheatsheet.com/)
2824

2925
### How to Use
3026
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:
4844
* [Khan Academy tutorial on Algorithms](https://www.khanacademy.org/computing/computer-science/algorithms)
4945
* [Topcoder Tutorials](https://www.topcoder.com/community/data-science/data-science-tutorials/)
5046
* [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

Comments
 (0)