#include #include int main() { // Allocate a byte array with at least 8 bytes char* byteArray = (char*)malloc(8); free(byteArray); return 0; }