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
1 changed files with 8 additions and 0 deletions

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