mirror of
https://github.com/epasveer/seer.git
synced 2026-08-29 16:40:42 +08:00
12 lines
119 B
C++
12 lines
119 B
C++
#include <stdlib.h>
|
|
|
|
int main() {
|
|
|
|
char* x = (char*)malloc(10 * sizeof(char*));
|
|
|
|
free(x);
|
|
|
|
return x[5];
|
|
}
|
|
|