老师要求用两个指针来和一个数组来完成。为什么我总是前面正常,最后一个字符串无法输出(如图)
望大佬解答

将有多个字符串和空格组成的字符串分离成单独的字符串
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
1条回答 默认 最新
- threenewbee 2019-11-19 18:08关注
// Q957823.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include <stdio.h> #include <string.h> int main () { char s[50]; printf("please enter the sentence within 49 characters:"); scanf("%[^\n]", s); char* src[100]; int n = 0; char * p = strtok(s, " "); while (p) { printf("%s\n", p); src[n++] = p; p = strtok(NULL, " "); } return 0; }
please enter the sentence within 49 characters:i love tigers
i
love
tigers
Press any key to continue . . .本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报