嗨,我是新的C,我無法找到印刷的方式僅4日,一個字符串的第5或第10號。C:打印字符串的另一封信到屏幕
我有這個小碼:
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個字符只有連接字符串的?
歡迎來到StackOverflow。我建議你在C上寫一本好書。這可以通過使用'[]'完成,但是你應該確保連接的字符串足夠長,以便首先有第4,5或10個字母。 – Eregrith