11 2021 档案
简单的字符串处理函数_C语言
摘要:字符串数组 // Code file created by C Code Develop #include "stdio.h" #include "stdlib.h" #include "string.h" #include "stdlib.h" // 字符串数组常用的函数 int main(){
阶乘-n!_C语言实现
摘要:n! // Code file created by C Code Develop #include "stdio.h" #include "stdlib.h" int main(){ int fac(int c); printf("%d", fac(- 4)); return 0; } int f