#include int main() { char* number = new char[10000]; strcpy(number, "327"); int x = atoi(number); printf("%s\n", number); return 0; }