A.完成4个直推 后台有2.6颗糖果时可以卖出第一颗糖果变现
B.没有完成4个直推 后台有3颗糖果时可以卖出第一颗糖果变现
C.卖糖果没必要非要填整数
D.在GHT平台交易时一颗糖果还要扣除0.01的手续费
A.in.get(str, strlen(str))
B.in.getline(str, strlen(str))
C.in>>str
D.in.read(str, strlen(str))
. void Test(void) { char *str = (char *) malloc(100); strcpy(str, “hello”); free(str); if(str != NULL) { strcpy(str, “world”); printf(str); } } 请问运行Test 函数会有什么样的结果?
A.str="hello world
B.strcpy(str,"hello world")
C.strcmp(str,"hello world")
D.strcat(str,"hello world")