#include
#include
class A
{
int i;
float j;
char c[20];
public:
A(int x, float y, char ch[])
{
i=x;
j=y;
strcpy(c,ch);
}
void printA()
{
cout
#include
#include
class A
{
int i;
float j;
char c[20];
public:
A(int x, float y, char ch[])
{
i=x;
j=y;
strcpy(c,ch);
}
void printA()
{
cout