我已经用 C++ 编写了一段代码,以使单词从字符串输入中出现在数组中。但由于溢出或其他原因,它不起作用。编译器虽然没有显示任何错误。
#include <iostream>
#include <stdio.h>
#include <string.h>
using namespace std;
int main()
{
char a[100];
gets(a);
char b[100][100];
int I=0;
for(int j=0;j<strlen(a);j++) //runs the loop for words
{
int k=0;
do
{
b[I][k]=a[j];
k++;
}
while(a[j]!=' ');
I++;
}
cout<<b[0][0];
return 0;
}