C++ question

Started by
2 comments, last by Hamlet 21 years, 7 months ago
I''m looking for a way to have a constructor function accept characters for somthing like this: class clock { public: clock(int hour, int minute, char[2]); etc.. private: int hour; int minute; char AMPM[2]; } then in the driver; int main() { clock( 5, 30, AM) etc... } Its telling me that AM is an undeclared identifier. Any suggestions?
"... thats the rub...
Advertisement
How about:

clock( 5, 30, "AM")
Mecha Engineer (Making Real Humanoid Suits)
Yes that did work. I had to make a few adjustments but it worked. I''m a bit rusty so thank you for not laughing.

*raises his ale
"... thats the rub...
Just out of curiousity did you get something along the lines of
''clock::clock cannot convert parameter 3 from char[3] to char[2]''
?

[twitter]warrenm[/twitter]

This topic is closed to new replies.

Advertisement