私はスワップ(実際のプログラムで実装する前にそれをテストするために袖口を使用しています)をポインタで作成していますが、なぜこのセグメンテーションフォルトが発生するのかは完全にわかりません私はそれを実行します。何か案は?スワップ機能のセグメンテーションフォールトの取得
#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;
}
'x'と' y'は何も設定しません... – GigaRohan
C++でCコードを書かないでください。参照と 'std :: vector'を使用してください。 – Alexander
'return'の後に' delete'することはできません。 – pinkfloydx33