发布时间:2012-09-26 10:46:21
打印1——1000范围内的整数,但不能使用循环和条件语句,更不能使用1000次printf函数......【阅读全文】
发布时间:2012-12-19 16:01:59
#include <stdio.h>int count_str(const char *);int main(void){ char *s = "abcdef"; int num; num = count_str(s); printf("s2 = %s\n", *s ? s : "NULL"); return 0;}int count_str(const char *s){ &nb......【阅读全文】