Hi all,
lets say for example I have the following code
char *fname = "John";
char *lname = "Doe";
char *query = "SELECT fname, lname FROM table_name;"
The last statement won't work, so my question is how to pass the fname and lname variables to the query?