Normally you can print the string in C like this..
printf("No record with name %s found\n", inputString);
But i wanted to make a string out of it, how i can do it? I am looking for something like this..
char *str = ("No record with name %s found\n", inputString);
I hope this has clear what i am looking for...