diff --git a/ram_slayer.c b/ram_slayer.c index c1e0b83..1860dba 100644 --- a/ram_slayer.c +++ b/ram_slayer.c @@ -1,7 +1,6 @@ // Source: https://www.quora.com/What-is-your-smallest-piece-of-code-that-can-crash-the-computer/answer/George-Gonzalez-5?srid=u2HNX -// Usees up all of RAM. +// Usees up all space of RAM. -int main(){ +main(){ while(malloc(1000)); - return 0; }