分类目录归档:C

选择排序

#include <stdio.h> int main(){ int … 继续阅读

发表在 C | 留下评论

冒泡排序

#include <stdio.h> int main(){ int … 继续阅读

发表在 C | 留下评论

makefile练习

#Makefile example OBJ=main.o test1.o tes … 继续阅读

发表在 C | 留下评论

理解gcc编译

#正常使用的一步编译 gcc hellogcc.c -o hgcc gcc -I … 继续阅读

发表在 C | 留下评论

递归累加

vim test.c #include<stdio.h> long … 继续阅读

发表在 C | 留下评论

穷举1-100素数

vim test.c #include<stdio.h> int m … 继续阅读

发表在 C | 留下评论