projects
/
kill9.git
/ commit
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
aaaf44a
)
Added stuff to C
author
qorg11
<qorg@vxempire.xyz>
Tue, 26 May 2020 19:03:59 +0000
(21:03 +0200)
committer
qorg11
<qorg@vxempire.xyz>
Tue, 26 May 2020 19:03:59 +0000
(21:03 +0200)
harmful/software/C.md
diff
|
blob
|
blame
|
history
diff --git
a/harmful/software/C.md
b/harmful/software/C.md
index
7f46071
..
5d5cecb
100644
(file)
--- a/
harmful/software/C.md
+++ b/
harmful/software/C.md
@@
-13,6
+13,14
@@
The preprocessor
Thank you for making me understand why I got a segfault![^1]
+~~~c
+int sum(int a, int b) {
+ return a + b;
+}
+~~~
+
+That causes overflow
+
# But remember
~~~