I was wondering if it is possible to build a string with the following code
char query[512];
char *insert = "insert into tableName values("%s, "%s");"
strcpy(query, insert);
method("max", "1234"); //function which adds values inro %s
My questions, how can I add another char array into in place of %s if it is possible? Thanks beforehand.