Auto commit

This commit is contained in:
smallkun 2025-03-18 09:48:39 +08:00
parent a580bebc74
commit 55230c94e4
2 changed files with 49 additions and 0 deletions

View File

@ -0,0 +1,23 @@
#include <stdio.h>
#include <string.h>
int main(){
char str[5][20];
char (*p)[20], (*max)[20];//数据类型 (*变量名)[长度];数组指针
int i;
for(i=0, p =str;i<5;i++){
scanf("%s", p++);
}
max = p;
for(i=1, p =str+1;i<5;i++){
if(strcmp(*p, *max)){
max = p;
}
p++;
}
printf("max = %s\n", max);
return 0;
}

View File

@ -836,6 +836,32 @@ int main(){
![image-20250227231243197](https://yp.smallkun.cn/markdown/image-20250227231243197.png!compress) ![image-20250227231243197](https://yp.smallkun.cn/markdown/image-20250227231243197.png!compress)
```c
#include <stdio.h>
#include <string.h>
int main(){
char str[5][20];
char (*p)[20], (*max)[20];//数据类型 (*变量名)[长度];数组指针
int i;
for(i=0, p =str;i<5;i++){
scanf("%s", p++);
}
max = p;
for(i=1, p =str+1;i<5;i++){
if(strcmp(*p, *max)){
max = p;
}
p++;
}
printf("max = %s\n", max);
return 0;
}
```
## 编译预处理 ## 编译预处理