I hav tis example code here which i am trying.
char test[256], test1[256];
char *combine =("Hello '%s', '%s'",test,test2);
how can I parse the value of my test test1 into my char *combine? I get an error of redeclaration of no linkage for my test and test1.
Check out sprintf. It will allow you to combine the two strings.
So, something like: