嗨,我是 C 新手,我无法找到仅打印字符串的第 4、5 或 10 个字母的方法。
我有这个小代码:
char firstWord[100];
char secondWord[100];
printf("Please type in: Hello World\n");
fgets(firstWord, sizeof(firstWord), stdin);
printf("Please type in: How are you?\n");
fgets(secondWord, sizeof(secondWord), stdin);
printf("You typed: %s,%s", firstWord, secondWord);
strcat(firstWord, secondWord);
printf("together it looks like this: %s", firstWord);
现在我将如何仅打印连接字符串的第 4 个或第 6 个字符?