C语言怎么用printf输出字符串

2024年11月18日 20:21
有1个网友回答
网友(1):

int main()
{
printf("%s","Your string");
return 0;
}