#include int main() { char* s = malloc(2); *s = "ok"; printf("%c\n", s[5]); return 0; }