zoukankan
html css js c++ java
Linux编程 第一个Hello World的C程序
1. gedit编写C代码
#include <stdio.h>
int
main(
int
argc,
char
*argv[])
{
printf(
"
Hello, David\n
"
);
return
0
;
}
2. 编译
gcc -o hello hello.c
3. 执行
./hello
技术改变世界
查看全文
相关阅读:
三分 例题
设计模式学习笔记(十九):迭代器模式
设计模式学习笔记(十八):解释器模式
设计模式学习笔记(十七):命令模式
设计模式学习笔记(十六):职责链模式
设计模式学习笔记(十五):代理模式
设计模式学习笔记(十四):享元模式
设计模式学习笔记(十三):外观模式
设计模式学习笔记(十二):装饰模式
设计模式学习笔记(十一):组合模式
原文地址:https://www.cnblogs.com/davidgu/p/2480062.html
最新文章
Docker
Python GitHub上星星数量最多的项目
Python 绘制2016世界GDP地图
Python JSON
Python CSV- 绘制气温图表
Python 使用matplotlib模块模拟掷骰子
Python编程:从入门到实践
Python编程:从入门到实践
Python编程:从入门到实践
Python编程:从入门到实践
热门文章
Python
CF #318 B. Bear and Three Musketeers
CF #318 A. Bear and Elections
BC #53 1002 Rikka with Tree
BC#53 1001 Rikka with Graph
A Simple Problem with Integers 线段树 成段更新
Minimum Inversion Number 数状数组
I Hate It 线段树
TC SRM 397 2 250
ural 1058 chocolate
Copyright © 2011-2022 走看看