Hi all,
I need to print characters and integers together in a string.

I know about sprintf in C as it is used like the following:

char str[] = "num%d num%d num%d";

int a = 5;
int b = 6;...