#include<stdio.h>
int main()
{
char str1[20] = { "hello" };
char str2[] = { "bit" };
printf("%s", strcat(str1, str2));
system("pause");
return 0;
}
#include<stdio.h>
int main()
{
char str1[20];
char str2[] = { "bit" };
printf("%s", strcpy(str1, str2));
system("pause");
return 0;
}
#include<stdio.h>
int main()
{
char str1[10] = { "hello" };
char str2[10] = { "bit" };
char max[10];
if (strcmp(str1, str2) > 0);
printf("%s",str1 );
if (strcmp(str1, str2) < 0);
strcpy(str2, str1);
printf("%s",str2 );
system("pause");
return 0;
}
#include<stdio.h>
int main()
{
char str[] = { "HELLO" };
printf("%s\n", strlwr(str));
printf("%d", strlen(str));
system("pause");
return 0;
}
时间: 2024-10-26 13:24:11