C语言。在屏幕上输出hello word
展开全部
以下为程序代码及执行结果:
#include <stdio.h>
#include <windows.h>
int main()
{printf("hello world!\n");
system("pause");
return 0;}
执行结果:
扩展资料:
C语言有多个函数可以从键盘获得用户输入,它们分别是:
scanf():和 printf() 类似,scanf() 可以输入多种类型的数据。
getchar()、getche()、getch():这三个函数都用于输入单个字符。
gets():获取一行数据,并作为字符串处理。
展开全部
#include <stdio.h>
int main(void)
{
printf("hello world");
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <stdio.h>
main()
{
printf("hello world\n");
}
main()
{
printf("hello world\n");
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
#include <stdio.h>
int main( void )
{
printf( "hello word\n");
return 0;
}
int main( void )
{
printf( "hello word\n");
return 0;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询