Find all errors in the following declaration class Thing pub
Solution
class Thing
{
public:
char c;
int *p;
float f;
Thing(char ch,float x)
{
c=ch;
p=&x;
f=2.00;
}

class Thing
{
public:
char c;
int *p;
float f;
Thing(char ch,float x)
{
c=ch;
p=&x;
f=2.00;
}
