摘要: 1.First, create separate source files(imaginatively(想像成) call fred.c and bill.c) for each function.Here's the first:#include <stdio.h>void fred(int arg){ printf("fred: we passed %d\n", arg);}And here's the second:#include <stdio.h>void bill(char *arg){ printf("bill 阅读全文
posted @ 2011-08-22 15:30 独酌逸醉 阅读(1009) 评论(0) 推荐(0) 编辑