#ifndef CoolString_H
#define CoolString_H
class CoolString
{
public:
CoolString()
{
size=50;
for (int i=0;i<size;i++)
{
s[i]='#';
coolyostring[i]='X';
}
}
CoolString (char chars[], int size1)
{
size=size1;
for (int i=0; i<=size1; i++)
{
s[i]=chars[i];
coolyostring[i]='X';
}
}
CoolString append (int n,char ch)
{
for (int i = size; i<=(size+n); i++)
{
s[i]=ch;
}
}
CoolString assign (CoolString coolyostring, int n)
{
for (int i = 0; i<n; i++)
{
s[i]= coolyostring[i];
}
}
private:
int size;
char s[];
char coolyostring[];
};
#endif
// Why am i getting an error no match for operator[]???? // I am trying to make a mock string class, and I just cant figure it out. // THIs is a mock string class... i am trying to do all the same operations you would see in the regular string class. //Since i am unable to do so, i will like to have someone explain to me what is causing my program not to work...