New paste Repaste Download
int *ptr_to_number(int x) {
    int *stored_x = malloc(sizeof int);
    stored_x = x;
    return &stored_x;
}
void make_array() {
    int *a[2] = {0};
    a[0] = ptr_to_number(1000);
    a[1] = ptr_to_number(2000);
    free(a[0]);
    free(a[1]);
}
Filename: None. Size: 261b. View raw, , hex, or download this file.

This paste expires on 2025-04-05 22:09:45.332527. Pasted through web.