摘要: http://www.cprogramming.com/tutorial/c/lesson17.html#include <stdarg.h>#include <stdio.h>/* this function will take the number of values to average followed by all of the numbers to average */double average ( int num, ... ){ va_list arguments; double sum = 0; /* Initial... 阅读全文
posted @ 2013-03-08 10:31 大兵八世 阅读(157) 评论(0) 推荐(0)