单项选择题
A.调用函数后,被调用的函数没有返回值B.调用函数后,被调用的函数不返回C.调用函数后,被调用的函数的返回值为任意类型D.其余选项都不对
A.getchar()B.gets()C.scanf()D.printf()
A.char str[]="hello";B.char str[30];strcpy(str,"hello");C.char str[30];str="hello";D.char str[30],*ps=str;strcpy(ps,"hello");