填空题

用以下语句调用库函数malloc,使字符指针st指向具有11个字节的动态存储空间,请填空。 st=(char * ) ;

【参考答案】

malloc(11) 或malloc(sizeof(char) * 11)