请编写出 显示"how are you?"的程序

2024-11-20 11:28:22
推荐回答(1个)
回答(1):

#include
int main(void)
{
printf("how are you");
return 0;
}