You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
248B

  1. #include <math.h>
  2. #include <string.h>
  3. #include <stdio.h>
  4. class intToString {
  5. private:
  6. int input;
  7. char output[100];
  8. public:
  9. intToString() :
  10. input(0),
  11. output("")
  12. {
  13. };
  14. void setinput(int _input);
  15. char * getoutput();
  16. };