c语言笔试题,大虾们解释下!
实现一个函数strprintf(int n,char *s1){}n代表参数*s1的个数,*s1为指向字符串的指针。
函数输出*s1字符串。
比如:strprintf(1,"hello") 输出结果为hello.
strprintf (3,"this","is","a dog") 输出结果为this is a dog.
提示:考虑系统编译,用指针实现!
我想了半天都觉得题目不对,是考的c语言,怎么会有重载了呢?
2009-08-28 11:57

2009-08-28 14:15
char *p="this",*p1="is",*p2="a dog";
char *p="this",*p3="abc",*p1="is",*p4="def",*p2="a dog";
char *p1="is",p*="this",*p2="a dog";
2009-08-28 16:26

2009-08-28 16:31

2009-08-28 16:41
2009-09-09 13:03
2009-09-09 13:14
2009-09-09 20:03
2009-09-09 20:05
2009-09-09 20:08