私は割り当てに取り組んでいますがmain
、変更が許可されていないため、次のコードでセグメンテーション違反が発生し続けています。
char signal[61];
Seti t2A(data, rF, rA, rB); // call constructor
t2A.getMessage(signal); // calling member functions
t2A.getRanges(&pA, &pB);
usrF = t2A.getFrequency( );
if(strcmp(signal, correct)) { // <-- this is where i get segmentation fault.
Seti
クラスの実装:
class Seti {
char signal[61];
int freq;
int a, b;
public:
Seti(const char [ ], int, int, int);
Seti();
int getFrequency( );
void getRanges(int *, int *);
void setRanges(int , int );
void getMessage(char *);
bool replaceChar(int , char );
bool copyPrimes(char *);
bool copyFibonacci(char *);
int initCap( );
friend Seti join(Seti, Seti);
};
そしてgetMessage
:の実装
void Seti::getMessage(char *pSignal) {
strcpy (pSignal, signal);
return;
}
その後、メインのifステートメントでセグメンテーション違反が発生するのはなぜですか?