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.
|
-
- #include <math.h>
- #include <string.h>
- #include <stdio.h>
- class intToString {
- private:
- int input;
- char output[100];
- public:
- intToString() :
- input(0),
- output("")
- {
-
- };
- void setinput(int _input);
- char * getoutput();
- };
|