摘要:
1. void str_copy(char *str1, char *str2) // 字符串复制函数 { while(*str1++ = *str2++); // 将字符串str2中的每个字符逐个复制到str1中,直到遇到字符串结束字符'\0' } void main() { char s1[] 阅读全文
摘要:
1. #include<stdio.h>main(){ int i,d; for(i=0;i<12;i++) {d= rand()%11+5; printf("%d ",d);} return 0; } 2. #include<stdio.h> int main() {int n,i,j,t,a[2 阅读全文