#include<stdio.h> int main() { void funter(char *a,char *b); char *str1="hello world"; printf("%s ",str1); char *str2="Hello World"; printf("%s ",str2); funter(str1,str2); return 0; } void funter(char *a,char *b) { int i=0; printf("%s ",a); printf("%s ",b); printf("查看1 "); for(;*b!='