温馨提示×

# scanf字符串

在C语言中,可以使用scanf函数读取字符串。读取字符串时,需要使用%s格式控制符。例如:char str[100];scanf("%s", str);这将从标准输入流中读取一个字...

0