J
james
IDE can understand both C and C++ fully. I suppose you are familiar with C.
because there are lots of fault of your post. one of major difference
between C++ and C is Object feature. like as:
...Header file
class Client
{
//data member
.......
//member function
void bzero(int*res,int size);
........
}
//implement file
Client *clnt= new Client;
clnt->bzero(&res,sizeof(res));
......
because there are lots of fault of your post. one of major difference
between C++ and C is Object feature. like as:
...Header file
class Client
{
//data member
.......
//member function
void bzero(int*res,int size);
........
}
//implement file
Client *clnt= new Client;
clnt->bzero(&res,sizeof(res));
......