08 2011 档案
摘要: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
阅读全文