I have two strings in C.
char* lexeme = "this is an example";
char c = 'a';
I want to concat the two strings to have as a result this:
"this is an examplea"
I've already tried using strcpy and strcat, but it gives an error because the second char is not of type char*