how we can concatenate more then two strings .
without using multiple strcat statement.
example
i have
char *a="program";
char *b="lang";
char *c= "clang";
so how can i add these strings without using two strcat.
if i use more then one strcat .
my execution times increases so how can i reduce it
thank u
sree