摘要:
1 //vstart.c 2 #include <stdio.h> 3 #include <strings.h> 4 #include <stdarg.h> 5 int demo(char *fmt, ...); 6 int main() 7 { 8 demo("DEMO", "This", "is", "a", "demo!", ""); 9 return 0;10 } 11 int demo( char *fmt, ... ) 12 { 阅读全文
posted @ 2012-04-09 19:49 月不识己 阅读(413) 评论(0) 推荐(0) 编辑