学习C语言的好地方,要求一定英文阅读能力
beaglebone吧
全部回复
仅看楼主
level 6
btiger 楼主
线上网址 http://c.learncodethehardway.org/book/
Here is a simple first program you can make in C:
int main(int argc, char *argv[])
{
puts("Hello world.");
return 0;
}
You can put this into a ex1.c then type:$ make ex1
cc ex1.c -o ex1
Your computer may use a slightly different command, but the end result should be a file named ex1 that you can run.
2013年03月21日 09点03分 1
level 6
btiger 楼主
现在做使再喜欢你刚才做的,你会看到警告离开。
额外的学分
正常开放
EX1
在你的文本编辑器编辑文件,更改或删除随机配件。
尝试运行它,看看会发生什么。
打印出5多行文本或一些更复杂的比你好的世界。
运行
3提出的人阅读关于这个函数和其他许多人。
2013年03月21日 13点03分 2
level 3
学习啦~
2013年03月23日 09点03分 3
我也需要学习 外国人的编程理念。[顶]
2013年04月01日 04点04分
level 1
收藏了!
2013年04月28日 11点04分 4
1