Q
I have a function defined in CC file like
int D(char* p, char* e, char* c,char* g1, short g1p, char* g2, short
g2p, bool s );
I put it in the header file as
int D(char* p, char* e, char* c, char* g1, short g1p, char* g2, short
g2p, bool s = false);
When I call it in the CC can I just use this format, where I don't pass
bool s
D(p, e, c, g1, g1p, g2, g2p);
Thanks a lot!
int D(char* p, char* e, char* c,char* g1, short g1p, char* g2, short
g2p, bool s );
I put it in the header file as
int D(char* p, char* e, char* c, char* g1, short g1p, char* g2, short
g2p, bool s = false);
When I call it in the CC can I just use this format, where I don't pass
bool s
D(p, e, c, g1, g1p, g2, g2p);
Thanks a lot!