我创建一个交换(使用couts在我的实际程序中实现它之前测试它)函数和指针我不完全确定为什么我在运行时遇到此分段错误它。有什么想法吗?
#include <iostream>
#include <stdio.h>
#include <stdlib.h>
using namespace std;
char * initializeWord(int length);
void swap(char *a, char *b);
//void scrambleWord(char *word, int size);
int main()
{
int length;
char *word, *x, *y;
cout << endl << "Welcome to Word Scrambler!" << endl << endl;
cout << "How many letters will your word have?" << endl << endl;
cin >> length;
getchar();
cout << endl << "Please input a word that contains " << length << " many characters." << endl << endl;
word = initializeWord(length);
cout << endl;
cout << "The word you entered was: " << word << endl << endl;
swap(x,y);
delete[] word;
return 0;
}
char * initializeWord(int length)
{
//initialization of char array
char *cArray = new char[length];
//user's word
cin >> cArray;
getchar();
return cArray;
delete[] cArray;
}
void swap(char *a, char *b)
{
cout << "First values:" << endl << a << endl << b << endl;
char *temp = a;
a = b;
b = temp;
cout << "Second values:" << endl << a << endl << b << endl;
}
答案 0 :(得分:2)
cin&gt;&gt; CARRAY; 此行将用户输入设置为数组的地址。
你可能想要:
char* initializeWord(int length)
{
char* cArray = new char[length];
for(int i = 0; i < length; ++i)
{
cin >> cArray[i]
}
...
}
或者只是使用字符串。