Skip to content

Commit 77b262c

Browse files
committed
Start chapter 1
1 parent 2e7603e commit 77b262c

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

content/Drafts/Chapter 1.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
---
2+
title: "Chapter 1: Introduction, How Computers Work, Memory Layouts, Data Types and Operations"
3+
---
4+
5+
This chapter is going to be a doozy. We'll start off by priming you with some of the prerequisite knowledge you need to know surrounding C.
6+
7+
Let's start off with an example:
8+
9+
```C
10+
#include <stdio.h>
11+
12+
int main(){
13+
printf("Hello world!\n");
14+
return 0;
15+
}
16+
17+
```
18+
19+
This is most probably everyone's first C program. There's a lot to cover, and for today it's a whirlwind tour

0 commit comments

Comments
 (0)