arudradey's picture
download
raw
367 Bytes
#include <stdio.h>
#include <stdlib.h>
#include <stdint.h>
#include <assert.h>
int main() {
uint8_t *ptr1 = (uint8_t *)malloc(1024*1024);
assert(ptr1);
uint8_t *ptr2 = (uint8_t *)malloc(3u*1024*1024*1024);
assert(ptr2);
uint8_t *ptr3 = (uint8_t *)malloc(1024*1024);
assert(ptr3);
free(ptr1);
free(ptr3);
free(ptr2);
printf("OK\n");
return 0;
}

Xet Storage Details

Size:
367 Bytes
·
Xet hash:
4492df720121264a6463198390a1d4301cf57ff13bc3d5e7e90c50563bd68952

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.