摘要: 源码要运行,必须先转成二进制的机器码。这是编译器的任务。 比如,下面这段源码(假定文件名叫做test.c)。 #include <stdio.h> int main(void) { fputs("Hello, world!\n", stdout); return 0; } 要先用编译器处 阅读全文
posted @ 2016-09-08 19:02 ynov 阅读(196) 评论(0) 推荐(0) 编辑
摘要: static void bubble_sort(int[] unsorted) { for (int i = 0; i unsorted[j]) { int temp = unsorted[i]; unsorted[i]... 阅读全文
posted @ 2016-09-08 18:38 ynov 阅读(148) 评论(0) 推荐(0) 编辑
摘要: mdzz 阅读全文
posted @ 2016-09-08 18:10 ynov 阅读(97) 评论(0) 推荐(0) 编辑