C 语言实例 - 输出 "Hello, World!"
C 语言教程
· 2019-02-20 13:13:40
使用 printf() 输出 "Hello, World!"。
实例
#include <stdio.h>
int main()
{
// printf() 中字符串需要引号
printf("Hello, World!");
return 0;
}
输出结果:
Hello, World!
点击查看所有 C 语言教程 文章: https://codercto.com/courses/l/17.html
Learn Python the Hard Way
Zed Shaw / Example Product Manufacturer / 2011
This is a very beginner book for people who want to learn to code. If you can already code then the book will probably drive you insane. It's intended for people who have no coding chops to build up t......一起来看看 《Learn Python the Hard Way》 这本书的介绍吧!