char ConsInput[400]; would contain the variable string ( a command line )
It could be preceded by strings such as
"Execute" or "LVAdd"
I want to get the result in
char ConsCopy[440];
Is there a standard or an easy way to do this?
Tue, 2012-04-24 22:46
#1
concatenate a variable sting after a constant string
If I understand what you mean, you can use snprintf
http://libslack.org/manpages/snprintf.3.html
Thanks.
That seems to be what i need.