mirror of
https://github.com/ultimatepp/ultimatepp.git
synced 2026-05-15 22:02:49 -06:00
10 lines
227 B
C++
10 lines
227 B
C++
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
int main(int argc, const char *argv[])
|
|
{
|
|
for(int i = 0; i < 100; i++) {
|
|
printf("0x%llX\n", (long long)malloc(1000));
|
|
printf("0x%llX\n", (long long)malloc(100000000));
|
|
}
|
|
}
|