1
0
mirror of git://git.qorg11.net/kill9.git synced 2025-02-18 16:56:49 +00:00

Added stuff to C

This commit is contained in:
qorg11 2020-05-26 21:03:59 +02:00
parent aaaf44abfd
commit 6e5a91ccc7
No known key found for this signature in database
GPG Key ID: 343FC20A4ACA62B9

View File

@ -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
~~~