2018-08-24 12:39:23 +05:30
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2022-01-22 01:17:21 +05:30
|
|
|
#include "test_util.h"
|
2020-06-18 02:09:50 +05:30
|
|
|
|
|
|
|
OPTNONE int main(void) {
|
2018-08-24 12:39:23 +05:30
|
|
|
char *p = malloc(0);
|
|
|
|
if (!p) {
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
printf("%c\n", *p);
|
|
|
|
return 0;
|
|
|
|
}
|