c - strcat() could not concatenate -
i have two-dimensional character array concatenated array. has error:
error c2664: 'strcat' : cannot convert parameter 1 'char *[80]' 'char *'
here's code:
char *article[5] = {"the", "a", "one", "some", "any"}; char *sentence[80]; num = rand() % 5; for(int x = 0; x < strlen(article[num]); x++){ strcat(sentence, article[num][x]); //a random element concatinated sentence array }
here's fixed code might want, it's hard tell want sure...
srand(time_t(0)); // seed random number generate once // use const when handling pointers string literals const char* article[5] = {"the", "a", "one", "some", "any"}; char sentence[80]; // 80 character buffer in automatic storage - no pointers sentence[0] = '\0'; // empty asciiz string start (int x = 0; x < 5; ++x) { int num = rand() % 5; strcat(sentence, article[num]); } printf("%s\n", sentence);
Comments
Post a Comment