char *pDigits; int i; pDigits = malloc(11); for( i=0; i<10; i++) { pDigits[i] = (char)('0' + i); } pDigits[10] = '\0'; printf("Digits: %s\n", pDigits);
Comment