mirror of
https://github.com/PKUFlyingPig/cs-self-learning.git
synced 2026-06-23 09:58:12 +08:00
10 lines
No EOL
134 B
C
10 lines
No EOL
134 B
C
#include <stdlib.h>
|
|
#include <stdio.h>
|
|
|
|
int main() {
|
|
while(1) {
|
|
malloc(1024); // allocate 1024bytes
|
|
}
|
|
|
|
return 0;
|
|
} |