I am a beginner at programming and recently wrote this code
#include<iostream>
using namespace std;
void removeAllCharacters(char * , char * );
void printArray(char*);
void deleteArrays(char*,char*);
int main()
{
char * source,*remove;
source=new char[18];
remove=new char[10];
source="Hello how are you";
remove="Hi Its me";
removeAllCharacters(source,remove);
printArray(source);
deleteArrays(source,remove);
system("pause");
return 0;
}
void removeAllCharacters(char * source, char * remove)
{
int N1=strlen(source)+1;
int N2=strlen(remove)+1;
bool arr[128] = {false};
for(int i=0;i<N2-1;i++)
{
arr[remove[i]]=1;
}
char *newSource=new char[N1];
for(int i=0,j=0;i<N1-1;i++)
{
if(arr[source[i]]==0)
{
newSource[j++]=source[i];
}
}
delete [] source;
source=newSource;
newSource=0;
}
void printArray(char* arr)
{
int N=strlen(arr)+1;
for(int i=0;i<N;i++)
{
cout << arr[i];
}
cout << endl << endl;
}
void deleteArrays(char* arr1,char*arr2)
{
delete [] arr1;
arr1=0;
delete[]arr2;
arr2=0;
}
I have tried debugging and found only that The error occurs at delete[] source; in the removeCharacters function.I tried looking for a solution online but i couldn't find it. Why is this error occurring? Is the error because I have allocated dynamic memory from main but i am deleting it from the function?
source is passed by value. Calling delete [] source will not have any effect on source in main function.