File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change 1
- #Introduction
1
+ # Introduction
2
2
3
3
** You need to have basic understanding of the C programming language to proceed with the codes from this repository.**
4
4
5
- ###Primitive types and built-in data structures in C
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
8
- int - integer: a whole number.
@@ -17,22 +17,22 @@ Other than these there are some derived data types. they are -
17
17
- Structures
18
18
- Enumeration
19
19
20
- #####More details about data types in C:
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
24
+ ### Big-O Cheat Sheet
25
25
26
26
27
27
[ Big-O Cheat Sheet Link] ( http://bigocheatsheet.com/ )
28
28
29
- ###How to Use
29
+ ### How to Use
30
30
To test or use codes from this repository you can use any popular IDE, online Editor or compile them locally using GCC compiler.
31
31
Following links will help on how to compile a C code in linux.
32
32
- http://www.akira.ruc.dk/~keld/teaching/CAN_e14/Readings/How%20to%20Compile%20and%20Run%20a%20C%20Program%20on%20Ubuntu%20Linux.pdf
33
33
- http://www.cyberciti.biz/faq/howto-compile-and-run-c-cplusplus-code-in-linux/
34
34
35
- ######TL;DR
35
+ ###### TL;DR
36
36
Run following command to compile a C code (You need to have [ gcc compiler] ( https://help.ubuntu.com/community/InstallingCompilers ) installed):
37
37
38
38
` gcc file_name.c -o file_name `
@@ -42,3 +42,6 @@ you will get an executable named: `file-name`
42
42
run it using:
43
43
44
44
` ./file_name `
45
+
46
+ ### Useful Links:
47
+ * [ Algorithms, 4th Edition (book by: Robert Sedgewick and Kevin Wayne)] ( http://algs4.cs.princeton.edu/home/ )
You can’t perform that action at this time.
0 commit comments