Skip to content

Commit fc7ee23

Browse files
committed
README file modified
1 parent 875c01f commit fc7ee23

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

README.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
#Introduction
1+
# Introduction
22

33
**You need to have basic understanding of the C programming language to proceed with the codes from this repository.**
44

5-
###Primitive types and built-in data structures in C
5+
### 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:
88
- int - integer: a whole number.
@@ -17,22 +17,22 @@ Other than these there are some derived data types. they are -
1717
- Structures
1818
- Enumeration
1919

20-
#####More details about data types in C:
20+
##### 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
24+
### Big-O Cheat Sheet
2525

2626

2727
[Big-O Cheat Sheet Link](http://bigocheatsheet.com/)
2828

29-
###How to Use
29+
### How to Use
3030
To test or use codes from this repository you can use any popular IDE, online Editor or compile them locally using GCC compiler.
3131
Following links will help on how to compile a C code in linux.
3232
- http://www.akira.ruc.dk/~keld/teaching/CAN_e14/Readings/How%20to%20Compile%20and%20Run%20a%20C%20Program%20on%20Ubuntu%20Linux.pdf
3333
- http://www.cyberciti.biz/faq/howto-compile-and-run-c-cplusplus-code-in-linux/
3434

35-
######TL;DR
35+
###### TL;DR
3636
Run following command to compile a C code (You need to have [gcc compiler](https://help.ubuntu.com/community/InstallingCompilers) installed):
3737

3838
`gcc file_name.c -o file_name`
@@ -42,3 +42,6 @@ you will get an executable named: `file-name`
4242
run it using:
4343

4444
`./file_name`
45+
46+
### Useful Links:
47+
* [Algorithms, 4th Edition (book by: Robert Sedgewick and Kevin Wayne)](http://algs4.cs.princeton.edu/home/)

0 commit comments

Comments
 (0)