Auto commit
This commit is contained in:
parent
a580bebc74
commit
55230c94e4
23
2207/C语言同步练习源码/5.指针-4.c
Normal file
23
2207/C语言同步练习源码/5.指针-4.c
Normal 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;
|
||||||
|
}
|
||||||
|
|
@ -836,6 +836,32 @@ int main(){
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
|
```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;
|
||||||
|
}
|
||||||
|
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## 编译预处理
|
## 编译预处理
|
||||||
|
Loading…
x
Reference in New Issue
Block a user