Tagged Questions
0
votes
8answers
1k views
strcat problem in C, segmentation fault
i am new to C and recently i have a problem with a strcat function.
I have an array of arguments defined like:
#define MAXARGS 10;
char *argvalues[MAXARGS];
All i want is to concatenate the last ...